Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
ashish01
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
Show HN: Hacker News, a little more focused
(hn-tags.beehivesoftware.xyz)
1 points
by
ashish01
3h ago
|
0 comments
2.
▲
by
ashish01
16d ago
What are you training on using self play? Like alpha go? Curious what your setup is like .
3.
▲
Kimi Linear: An Expressive, Efficient Attention Architecture
(arxiv.org)
3 points
by
ashish01
2mo ago
|
0 comments
4.
▲
by
ashish01
2mo ago
Since it was making rounds yesterday here is what muse generated for the 3d rubik's cube prompt - https://ashish01.github.io/rubik-muse/
5.
▲
by
ashish01
6mo ago
> Browser not fully supported > This editor relies on WebGPU for rendering, which currently works best in Chrome or other Chromium-based browsers. You may experience issues in your current browser. (reminds of works in IE6)
6.
▲
by
ashish01
7mo ago
That is really beautiful literate program. Seeing it after a long time. Here is a opus generate version of this code - https://ashish01.github.io/microgpt.html
7.
▲
by
ashish01
8mo ago
Still working on PocketWise ( https://pocketwise.app ), a simple double-entry accounting app. Just finished adding end-to-end encryption with a zero-trust server model. All encryption and decryption happens in the browser (using P
8.
▲
by
ashish01
8mo ago
I have an old Lenovo IdeaPad with fairly modest hardware, and I have both Fedora and Windows installed. About 90% of the time I use Fedora, and it works fine overall. The only thing that bothers me is that Firefox on Fedora feels noticeably
9.
▲
Show HN: Pocketwise – a privacy-first, double-entry finance tracker
(pocketwise.app)
3 points
by
ashish01
9mo ago
|
0 comments
10.
▲
by
ashish01
9mo ago
Simple meal tracker to give some macros but mainly give a health rating on 1-10 scale. http://meal-tracker.fly.dev
11.
▲
Show HN: Meal Tracker – Weekend hack using LLM to get food macros from photos
(meal-tracker.fly.dev)
1 points
by
ashish01
9mo ago
|
0 comments
12.
▲
by
ashish01
9mo ago
I use Litestream for near real-time backups. Does not change how SQLite is used on the server, just a replacement for .backup
13.
▲
Show HN: PocketWise – a simple, natural-language double-entry finance tracker
(pocketwise.app)
2 points
by
ashish01
10mo ago
|
2 comments
14.
▲
by
ashish01
10mo ago
I am working on PocketWise ( https://pocketwise.app ) a lightweight personal finance tracking app. Goal is to make double entry accounting simple and approachable for everyday use. It’s my first project of this kind, so I’d really
15.
▲
by
ashish01
1y ago
https://hn-reader.pages.dev/
16.
▲
Cleora: A Simple, Strong and Scalable Graph Embedding Scheme
(github.com)
1 points
by
ashish01
1y ago
|
0 comments
17.
▲
by
ashish01
1y ago
I also prefer BFS expansion of comments. So I implemented https://hn-reader.pages.dev/ for this. Also has dark mode to be easy on eyes.
18.
▲
by
ashish01
1y ago
> one of the biggest waste of money on an acquisition. I think that was when intel acquired McAfee for 8B in 2010.
19.
▲
by
ashish01
1y ago
I wrote one a while back https://github.com/ashish01/hn-data-dumps and it was a lot of fun. One thing which will be cool to implement is that more recent items will update more over time making any recent downloaded it
20.
▲
Show HN: HN Reader – Alternate Reader for Hacker New
(hn-reader.pages.dev)
2 points
by
ashish01
1y ago
|
1 comments
21.
▲
by
ashish01
2y ago
With a one-time setup, a low-fi solution is to receive an email from your bank for every transaction and extract the data into a ledger entry.
22.
▲
by
ashish01
2y ago
You do get $10 worth of monthly claude credits for free - https://zed.dev/blog/zed-ai-billing but for others like OpenAI or DeepSeek you need an API key.
23.
▲
DeepSeek-R1 for Coding in Zed
(zed.dev)
31 points
by
ashish01
2y ago
|
8 comments
24.
▲
by
ashish01
2y ago
https://github.com/egh/ledger-autosync is really useful for integrating banks OFX files into an existing ledger file. Over time, it learns common patterns, automatically assigning transactions to the correct accounts.
25.
▲
by
ashish01
2y ago
Is there a way to download the problems via an API, or have them available in a file like https://norvig.com/top95.txt ? It would make a great dataset for benchmarking different solver approaches.
26.
▲
Little Languages (1986) [pdf]
(staff.um.edu.mt)
175 points
by
ashish01
2y ago
|
29 comments
27.
▲
by
ashish01
2y ago
I agree with the sentiment of the blog, but it doesn't present a very compelling argument. Just relies on authority rather than evidence or logical reasoning. For a more impactful and well-reasoned discussion on this topic checkout &qu
28.
▲
by
ashish01
2y ago
I made two using scd41, esp32 and esphome. https://shop.m5stack.com/products/co2l-unit-with-temperature...
29.
▲
by
ashish01
3y ago
I tried jit as well but looks like recursive functions cannot be jitted yet :(
30.
▲
by
ashish01
3y ago
I was curious about how slow (or fast) it is compared to cpython. On fibonacci.py rustpython about 11x slower than cpython. def fib(n): if n == 0 or n == 1: return 1 return fib(n-1) + fib(n-2) print(fi
More ›