HackerTrans
TopNewTrendsCommentsPastAskShowJobs

ashish01

637 karmajoined 17 năm trước

Submissions

Show HN: Pocketwise – a privacy-first, double-entry finance tracker

pocketwise.app
3 points·by ashish01·6 tháng trước·0 comments

Show HN: Meal Tracker – Weekend hack using LLM to get food macros from photos

meal-tracker.fly.dev
1 points·by ashish01·7 tháng trước·0 comments

Show HN: PocketWise – a simple, natural-language double-entry finance tracker

pocketwise.app
2 points·by ashish01·8 tháng trước·2 comments

Cleora: A Simple, Strong and Scalable Graph Embedding Scheme

github.com
1 points·by ashish01·11 tháng trước·0 comments

Show HN: HN Reader – Alternate Reader for Hacker New

hn-reader.pages.dev
2 points·by ashish01·năm ngoái·1 comments

DeepSeek-R1 for Coding in Zed

zed.dev
31 points·by ashish01·năm ngoái·8 comments

Little Languages (1986) [pdf]

staff.um.edu.mt
175 points·by ashish01·2 năm trước·29 comments

comments

ashish01
·5 ngày trước·discuss
Since it was making rounds yesterday here is what muse generated for the 3d rubik's cube prompt - https://ashish01.github.io/rubik-muse/
ashish01
·4 tháng trước·discuss
> 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)
ashish01
·5 tháng trước·discuss
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
ashish01
·6 tháng trước·discuss
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 PRF), and the server only sees encrypted data.
ashish01
·6 tháng trước·discuss
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 more sluggish compared to Edge or Firefox on Windows. Maybe it’s just a perception issue, but I’d love to know what others are using as their web browser on Linux.
ashish01
·7 tháng trước·discuss
Simple meal tracker to give some macros but mainly give a health rating on 1-10 scale. http://meal-tracker.fly.dev
ashish01
·7 tháng trước·discuss
I use Litestream for near real-time backups. Does not change how SQLite is used on the server, just a replacement for .backup
ashish01
·8 tháng trước·discuss
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 appreciate any feedback.
ashish01
·10 tháng trước·discuss
https://hn-reader.pages.dev/
ashish01
·năm ngoái·discuss
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.
ashish01
·năm ngoái·discuss
> one of the biggest waste of money on an acquisition.

I think that was when intel acquired McAfee for 8B in 2010.
ashish01
·năm ngoái·discuss
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 items more stale than older ones.
ashish01
·năm ngoái·discuss
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.
ashish01
·năm ngoái·discuss
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.
ashish01
·2 năm trước·discuss
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.
ashish01
·2 năm trước·discuss
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.
ashish01
·2 năm trước·discuss
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 "Simple Made Easy" by Rich Hickey (https://www.youtube.com/watch?v=SxdOUGdseq4)
ashish01
·2 năm trước·discuss
I made two using scd41, esp32 and esphome. https://shop.m5stack.com/products/co2l-unit-with-temperature...
ashish01
·2 năm trước·discuss
I tried jit as well but looks like recursive functions cannot be jitted yet :(
ashish01
·2 năm trước·discuss
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(fib(35))

    time python3 ~/code/fibs.py
    14930352

    ________________________________________________________
    Executed in    1.18 secs    fish           external
       usr time    1.14 secs  180.00 micros    1.14 secs
       sys time    0.01 secs  616.00 micros    0.01 secs

    time ./target/release/rustpython ~/code/fibs.py
    14930352

    ________________________________________________________
    Executed in   13.44 secs    fish           external
       usr time   13.32 secs  175.00 micros   13.32 secs
       sys time    0.02 secs  776.00 micros    0.02 secs