HackerLangs
TopNewTrendsCommentsPastAskShowJobs

mohsen1

2,049 karmajoined 14 lat temu
https://tsz.dev azimi.me github.com/mohsen1

Submissions

Show HN: A free and open source session recording Chrome extension

3 points·by mohsen1·6 godzin temu·0 comments

[untitled]

1 points·by mohsen1·6 godzin temu·0 comments

Show HN: Git-lazy-mount mount a repo without cloning it. Works with ordinary Git

github.com
9 points·by mohsen1·15 dni temu·3 comments

AI is killing All About Berlin

twitter.com
7 points·by mohsen1·2 miesiące temu·4 comments

Sound Mode: Can TypeScript Type Checking Be Stricter?

tsz.dev
6 points·by mohsen1·2 miesiące temu·2 comments

Bypass internet blockade in Iran via Vercel

github.com
6 points·by mohsen1·2 miesiące temu·0 comments

Image Generators Are Generalist Vision Learners

arxiv.org
2 points·by mohsen1·3 miesiące temu·0 comments

SlopCodeBench: Benchmarking How Coding Agents Degrade over Long-Horizon Task

arxiv.org
1 points·by mohsen1·3 miesiące temu·0 comments

Ceno, browse the web without internet access

ceno.app
134 points·by mohsen1·4 miesiące temu·40 comments

Show HN: A compression tool that reduces linux binary downloads by 6%

3 points·by mohsen1·4 miesiące temu·1 comments

Show HN: I used LLMs to build a compression tool that beats xz on x86_64 ELFs

4 points·by mohsen1·4 miesiące temu·3 comments

Tons of Free Potato in Berlin

4000-tonnen.de
4 points·by mohsen1·6 miesięcy temu·1 comments

Mafia Arena: Benchmarking LLMs in the game of mafia

mafia-arena.com
3 points·by mohsen1·6 miesięcy temu·0 comments

Show HN: Mafia Arena – LLMs play social deduction games against each other

mafia-arena.com
1 points·by mohsen1·6 miesięcy temu·0 comments

comments

mohsen1
·przedwczoraj·discuss
Thanks! Any pro tips for sharding? I landed on single job because couldn't get cache to work properly for shards to be fast enough to worth it
mohsen1
·przedwczoraj·discuss
I love nextest. without it my CI could take hours

https://github.com/tsz-org/tsz/actions/runs/29002057457/job/...

watch it running 32.5k unit tests without breaking a sweat!
mohsen1
·przedwczoraj·discuss
This is perfect for my Chrome Extension for recording sessions and capturing screenshots, audio narration and videos. The output is a zip file with everything so if user wants to share they can use this

https://github.com/mohsen1/session-recorder-chrome-extension

I built above chrome extension because anything in this area has been trying to monetize the solution. I wanted a free and open source version of this to exist.
mohsen1
·6 dni temu·discuss
I have a philosophical problem with adaptive thinking. It’s a dumb guess for how much thinking budget to allocate ahead of thinking. At least in the context of LLMs there is probably no way of knowing how much thinking (token generation) is needed. The problem space is infinity vast, similarly of two prompts is not going to help any LLM decide how much thinning is needed. Models already stop thinking before hitting the thinking budget.

Why there is so much effort in making adaptive thinking happen and don’t we train models to produce the end of thinning token better?

Feels like a bandaid. We need models to be trained to do a reasonable amount of reasoning (no pub intended):

    reason

    estimate remaining uncertainty

    continue?

    reason more

    repeat
mohsen1
·9 dni temu·discuss
Computer Scientist Explains One Concept in 5 Levels of Difficult

https://www.youtube.com/watch?v=fOGdb1CTu5c

This video is very beautifully explains it
mohsen1
·11 dni temu·discuss
This seems to be a new trend. Noticed it with GPT "ultra" in their announcement[1]. I'm with you, a large language model and a system of many language models working together are not the same thing

[1] https://news.ycombinator.com/item?id=48689338
mohsen1
·12 dni temu·discuss
It seems like we forget that LLMs are next token prediction systems. Using raw models without instruction following and chat completion bells and whistles will give you a better feeling of what LLMs are.

The current interface to LLMs are heavily biased towards "predict the next token in the context of a user with a helpful assistant" but LLMs are capable of other modes of next token prediction too.

Before the ChatGPT release people often measured LLM performance by how well they could produce a coherent story or a poem. that's where Anthropic model names are originating from I am guessing.
mohsen1
·13 dni temu·discuss
[dead]
mohsen1
·14 dni temu·discuss
Nice thing about the microvm is that you can snapshot it and restore it. Keeping the fs minimal is my goal. Snapshots restore much faster if they do not include 5GB of source code
mohsen1
·14 dni temu·discuss
I’ve been working with AgentCore that uses the same MicroVMs. They are capable in many ways but for coding agents that load a big got repo they get bloated quickly with the git repo.

I’m building this google3 style mounting to address this.

https://github.com/mohsen1/git-lazy-mount

Still work in progress but for now I am seeing promising results
mohsen1
·14 dni temu·discuss
Confusion is: ultracode is not a different model with its own benchmarks
mohsen1
·14 dni temu·discuss
NYT's The Daily covered this a few days ago. Has a few interesting details about what went on...

https://www.nytimes.com/2026/06/04/podcasts/the-daily/trump-...
mohsen1
·14 dni temu·discuss
> Additionally, we’re introducing a new `ultra` mode that goes beyond the capabilities of a single agent by leveraging subagents to accelerate complex work.

I'm curious about how does this work? Do the subagents also get to use the same tools? Will the client be flooded with tool calls? Why extra pricing for a new "model" when the same thing can happen in the client with more controls?

And if it's an army of subagents, why do they compare it to Fable and Mythos? Those models with similar harness would probably bench better I'm guessing
mohsen1
·15 dni temu·discuss
Jokes on them, I just used Safari's summary feature. Even the title was enough for me to get the point.
mohsen1
·15 dni temu·discuss
Thanks! Two thoughts:

- if this port is happening on a single machine, you are better off with work trees. You can reuse worktrees if creating a new one is expensive. https://github.com/satococoa/git-worktreeinclude can help you initing work trees smooth

- If you want the system scale on the cloud with many many VMs doing work on the repo and repo is large enough that lazy-mount gives you meaningful perf benefits, yes definitely. It can be useful. Note that if the repo is private, you will need to configure sgrep's code search backend to be reachable from the microVMs
mohsen1
·15 dni temu·discuss
Link to the discussion that gave me the idea: https://news.ycombinator.com/item?id=48631726#48634278
mohsen1
·15 dni temu·discuss
I took a stab at this here https://github.com/mohsen1/git-lazy-mount

It seems to be feasible and useful. I'm still ironing out some details but I thought I share early
mohsen1
·18 dni temu·discuss
I'm really curious to see how this unfolds. It's a defining moment for us I think
mohsen1
·18 dni temu·discuss
Yes, in my project I made so much more progress in 3 days of Fable that is not comparable to how Opus is working.
mohsen1
·18 dni temu·discuss
The lazy mount is very interesting. This is similar to how google3 works at Google that I have not seen any similar implementation in open source so far.

Git sparse checkout is helpful but checking files out as they are needed is much more flexible and intuitive.

Microsoft VFS for Git / GVFS is the closest that I can think of.

There is room for this lazy mount idea to be built on top of Git