Peter Homola
MModular
•Created by Lil'Nish on 10/22/2024 in #questions
Could Mojo be the first all purpose language?
Lean is actually pretty cool.
15 replies
MModular
•Created by eggsquad on 10/16/2024 in #community-showcase
EmberJson: High level JSON library
I've removed unnecessary heap allocations and now my parser seems to be faster again :)
38 replies
MModular
•Created by eggsquad on 10/16/2024 in #community-showcase
EmberJson: High level JSON library
Your code should be faster then because I first tokenise the input.
38 replies
MModular
•Created by eggsquad on 10/16/2024 in #community-showcase
EmberJson: High level JSON library
Yes, I think reading from raw bytes is better here.
38 replies
MModular
•Created by eggsquad on 10/16/2024 in #community-showcase
EmberJson: High level JSON library
I just ran your benchmarks.
38 replies
MModular
•Created by eggsquad on 10/16/2024 in #community-showcase
EmberJson: High level JSON library
I wrote a similar parser a few weeks ago. Seems to be ~2.5 faster. https://github.com/phomola/mojolibs/tree/main/src/textkit
38 replies
MModular
•Created by a2svior on 9/30/2024 in #questions
Runtime Reflection in Mojo?
I'd like to have macros like in Julia (or Rust) but I think I read somewhere that this isn't planned.
16 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
HTML given the context.
70 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Do you plan on having some sort of templates? I wrote a PoC, can be seen here: https://arax.ee/mojo I’d be interested in having something similar to Go.
70 replies
MModular
•Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
Do you have some benchmarks?
70 replies
MModular
•Created by Peter Homola on 9/17/2024 in #community-showcase
Mojo web apps
I don’t have any requirements, not planning to use Mojo in production for this at the moment. Generally I like the way Go’s http package is designed. I have some ideas about the high level API (like working with JSON) though.
7 replies
MModular
•Created by Peter Homola on 9/17/2024 in #community-showcase
Mojo web apps
I don’t want to do things from scratch. And lightbug doesn’t have a good API.
7 replies
MModular
•Created by Peter Homola on 9/17/2024 in #community-showcase
Mojo web apps
I wrote a shared library in Go which the Mojo app uses. Once there’s a pure Mojo implementation I’ll switch to that. The apps are compiled on the server and run via Docker.
7 replies
MModular
•Created by Peter Homola on 8/22/2024 in #community-showcase
Tokeniser & CSV parser
The JSON parser: https://github.com/phomola/mojolibs/blob/main/src/textkit/json.mojo
3 replies