HackerTrans
TopNewTrendsCommentsPastAskShowJobs

aziis98

139 karmajoined 9 ปีที่แล้ว

Submissions

Introducing HRM-Text

sapient.inc
2 points·by aziis98·2 เดือนที่ผ่านมา·0 comments

Prism: When an LLM predicts the next token, which training does it relying on?

guidelabs.ai
1 points·by aziis98·5 เดือนที่ผ่านมา·0 comments

Experiments with CodeMirror: Building a code review tool

aziis98.com
1 points·by aziis98·5 เดือนที่ผ่านมา·0 comments

Run Typst in JavaScriptWorld

github.com
2 points·by aziis98·6 เดือนที่ผ่านมา·0 comments

Show HN: I made a Tailwind alternative for Preact

github.com
6 points·by aziis98·6 เดือนที่ผ่านมา·0 comments

Granule – A statically-typed linear functional language with graded modal types

github.com
2 points·by aziis98·7 เดือนที่ผ่านมา·0 comments

Nuxt Studio Alpha Release

content.nuxt.com
3 points·by aziis98·8 เดือนที่ผ่านมา·0 comments

CSS Extraction Library for Vite and Preact

github.com
3 points·by aziis98·8 เดือนที่ผ่านมา·1 comments

comments

aziis98
·เมื่อวานซืน·discuss
I also made my own variant recently. I really liked the idea of litmaps but I didn't really like the UI/UX or "graph expand" feature (it uses some internal heuristic that is not very clear).

https://paper-explorer.aziis98.com/ (also on github https://github.com/aziis98/paper-explorer)

This uses OpenAlex as a source of articles and to let you explore the citation graph of papers. This is still a prototype mostly made to test out how far I could go with vibecoding (well I still checked the code now and then) something without a js framework. Someday I think I will add more features to it, but now there is already a somewhat working version of import/export so I'm fine with it.
aziis98
·4 วันที่ผ่านมา·discuss
This would be nice as an Astro (or generic meta-framework plugin) that automatically parses all generated html files and generates a small db of embeddings.

This way on the frontend you can lazily load this. Maybe you could even store the HNSW in chunks and just load the pieces you need for your specific search query.

i.e. like https://pagefind.app/ but to get fully static vector search.
aziis98
·10 วันที่ผ่านมา·discuss
Is this GUI only?
aziis98
·12 วันที่ผ่านมา·discuss
Love it!

I also did some experiments some time ago. The thing this is missing for me is the ability to also run arbitrary commands other that just using a few premade apps. In fact I think this stuff becomes really interesting when you put a real "shell" on top of this.

And I don't mean a classical posix shell, something that can be used to leverage the full power of the custom ui and frontend. Also a must have is "nestable connections".

The experiment I was doing was with a web interface and a statically compiled Go backend (for easy deployment via ssh). Maybe some day I will finish it xD
aziis98
·18 วันที่ผ่านมา·discuss
Wow, awesome project! I gave a look a bit at the code (before realizing this was made with coding agents as said below on the website) and this seems really well made.

Still, I would really like to know how you approached this from an architecture perspective. I'm also curious to how much coding agents structured the code like so by themselves or if you had to steer them heavily (I've just tried a bit gemini flash from antigravity cli so I'm a bit behind on this).

Also how did you approach the rendering correspondence with actual tikz code? Do you have some tests that like render the tikz using latex and your js pipeline and compare the result for differences?
aziis98
·2 เดือนที่ผ่านมา·discuss
> I was able to get I think 20 or 30 tokens per second on CPU (DDR4 ram) alone

What are you using for inference? I have a recent intel laptop with 32GB of DDR5 and I am getting at most 25tps with the llama cpp vulkan backend (that is the fastest, I also tried sycl but it is a bit slower)
aziis98
·2 เดือนที่ผ่านมา·discuss
I just tried the Q4_K_M variant of this [] and this is one of the first models that run at ~20tps on my laptop. I also tried it with some "hard" maths questions and it clearly knows much. Can't wait to try some local coding agent harnesses with it (I recently discovered kon [1] and dirac [2] and wanted to try them out)

The only thing I'm not sure about is if this model supports thinking or not.

[1]: https://github.com/0xku/kon

[2]: https://github.com/dirac-run/dirac
aziis98
·4 เดือนที่ผ่านมา·discuss
I also did some experiments in this space as I have the same complaints about Tailwind

https://github.com/aziis98/preact-css-extract

I made this as I couldn't stand writing another 2K lines css file and wanted to try the atomic css wagon without having to switch from preact or having to learn tailwind
aziis98
·4 เดือนที่ผ่านมา·discuss
On Firefox and Chrome the rectangle to make a query is offset wrong relative to the mouse D:
aziis98
·5 เดือนที่ผ่านมา·discuss
Does anybody know if I can try this online?
aziis98
·5 เดือนที่ผ่านมา·discuss
> The win? Massive.

But there are benchmark numbers at least, so maybe they only used it for the prose
aziis98
·5 เดือนที่ผ่านมา·discuss
Why didn't I know about this before
aziis98
·6 เดือนที่ผ่านมา·discuss
I hope we get to good A1B models as I'm currently GPU poor and can only do inference on CPU for now
aziis98
·6 เดือนที่ผ่านมา·discuss
This simply solved icons for me
aziis98
·6 เดือนที่ผ่านมา·discuss
The real problem vdom and more complex frameworks solve for me is dealing with much more complex state i.e. lists.

When dealing with lists there are so many possible ways of updating them (full updates, insertion/removal at an index, update at an index, ...) that manually mounting and unmounting single items by hand gets unbearable. You must then do some kind of diffing at the framework level to get good performance and readable code.

I would like to see "VanillaJS" articles talk both more and more in depth about this problem.
aziis98
·6 เดือนที่ผ่านมา·discuss
Still the whole world runs on GC-ed languages so it must be an abstraction at least some people like to work with.

And I'm pretty sure using a GC in some cases it's the only option to not go crazy.
aziis98
·6 เดือนที่ผ่านมา·discuss
I don't get how this would be more "ai friendly" than other frameworks, that kind of propositions should be backed by more concrete proof. I know that this is a kind of open problem but at least show me this can be easily generated with common models without an enormous reference prompt.

Another thing is that this looks like any other framework out there. I think you can map every one of it's features mostly 1-1 to SolidJS. What is the novelty here? The slightly changed js syntax with "component", "@" and "#"?

I would like to see more radical and new ideas in the js space, expecially in this period. Maybe a new take on Elm to get stronger UI stability guarantees. Or even just some very good tooling to reason about very large reactivity graphs at runtime and (maybe also at) compile time.

That said I still appreciate the work and in particular all the effort spent making the new syntax work in all common editors, I see they support vscode, intellij, sublime, ...

Edit: In the actual documentation they provide an llm.txt https://www.ripplejs.com/llms.txt
aziis98
·6 เดือนที่ผ่านมา·discuss
The erdos problem website tells the theorem is formalized in Lean but on the mathlib project there is just the theorem statement with a sorry. Does someone know where I can find the lean proof? I don't know maybe it's in some random pull request I didn't find.

Edit: Found it here https://github.com/plby/lean-proofs/blob/main/src/v4.24.0/Er...
aziis98
·6 เดือนที่ผ่านมา·discuss
There are many made with eval-unescape-escape that feel a bit like cheating. Still all very impressive
aziis98
·6 เดือนที่ผ่านมา·discuss
I didn't know about JBang, it looks awesome. Does it work somewhat like uv?