Viewing profile — mingodad
mingodad
HN member- Joined
- Tue, Mar 31, 2015, 8:42 AM UTC
- HN karma
- 419
- Public activity
- 188 items
- HN profile
- View on Hacker News ↗
About mingodad
No profile information was provided.
Recent public activity
-
comment
Comment #48669614
For others interested in alternative syntax to the Lua VM/API sometime ago I've created LJS https://github.com/mingodad/ljs and also https://github.com/mingodad/ljsjit , I've also …
-
comment
Comment #48526975
I'm using https://github.com/ondras/wwwsqldesigner and I think that's worth taking it in account for comparison.
-
comment
Comment #47295692
I'm still a bit confused because it says "All uploads use Unsloth Dynamic 2.0" but then when looking at the available options like for 4 bits there is: IQ4_XS 5.17 GB, Q4_K_S 5.39 …
-
comment
Comment #47110227
There is also https://sparse.docs.kernel.org/ that can be used to help refactoring C code.
-
comment
Comment #46129528
Interesting enough today I found that https://huggingface.co/openai/gpt-oss-20b when downloaded an running locally and asked: ==== when have you been built? I’m a GPT‑4‑based model…
-
comment
Comment #46090034
I did an experiment while learning about LLMs and llama.cpp consisting in trying to use create a Lua extension to use llama.cpp API to enhance LLMs with agent/RAG written in Lua wi…
-
comment
Comment #45886236
I've asked to index my project https://github.com/mingodad/parsertl-playground and the result https://deepwiki.com/mingodad/parsertl-playground seems to be reasonable good (still g…
-
comment
Comment #44431929
https://github.com/mingodad/cfront-3
-
comment
Comment #44431907
Here I've got it to work with recent compilers/OSs https://github.com/mingodad/cfront-3
-
comment
Comment #44091401
I'm collecting a collection of PEG grammars here https://mingodad.github.io/cpp-peglib and Yacc/Lex grammars here https://mingodad.github.io/parsertl-playground/playground both are…
-
comment
Comment #44063278
There is also https://github.com/ricomariani/CG-SQL-author that has a powerful stored procedure capabilities that can be transpiled to C/Lua/..., you can try it in your browser her…
-
comment
Comment #44027068
There is also https://sciter.com/ that the author tried to find finance to make it opensource but couldn't find enough supporters.
-
comment
Comment #43192728
I do have a big collection of LALR(1) grammars to test/study/develop/document here https://mingodad.github.io/parsertl-playground/playground/ including sqlite, tidb, vites, postgre…
-
comment
Comment #43129874
Not exactly the same but here https://github.com/robertoraggi/cplusplus there is one person serious effort to create a C++-23 compiler front end.
-
comment
Comment #43126656
But if otherwise anyone want to try with Yacc/Lex I have an online interpreter/editor with more than 250 examples to try/study at https://mingodad.github.io/parsertl-playground/pla…
-
comment
Comment #42960953
No one mention Opera before adopting webkit/blink it was lightweight and fast. And even it's source code appeared in some places after a leak.
-
comment
Comment #42839043
Also available with LUA http://lua.sqlite.org/index.cgi/doc/tip/doc/lsqlite3.wiki#db...
-
comment
Comment #42643344
Using the same idea there is https://datadraw.sourceforge.net/ and https://github.com/google/rune using it. DataDraw is an ultra-fast persistent database for high performance progr…
-
comment
Comment #42521975
But I implemented a warning/error for variable shadowing.
-
comment
Comment #42521922
No changes to "global by default" and no checking are made to type annotations. The idea was to be able to convert any existing Lua code automatically and get it working as before …
-
comment
Comment #42521814
I've made changes to the Lua/LuaJIT lexer/Parser to have a C like syntax and a program to convert Lua syntax to LJS syntax you can see it in the repositories shown bellow, the C ap…
-
comment
Comment #42209331
Also for C/C++ binaries with debug info gdb is one of the ingredients used to show where and how much globals exists: gdb -batch -ex "info variables" -ex quit --args binary-to-exam…
-
comment
Comment #42209242
I did the same for tinycc here https://github.com/mingodad/tinycc and used Netbeans IDE that has great refactoring options for C/C++/Java. Benchmarking the reentrant result showed …
-
comment
Comment #42085068
The lemon tool that is used by SQLite can output the grammar as SQL database that you can manipulate. There is https://github.com/ricomariani/CG-SQL-author that goes way beyond and…
-
comment
Comment #42019662
Have a look at http://ecere.org/ they already have it working.