HackerTrans
TopNewTrendsCommentsPastAskShowJobs

grandimam

77 karmajoined 3 года назад

Submissions

HackerRank's LLM-Based Hiring Agent

blog.grandimam.com
1 points·by grandimam·3 часа назад·0 comments

Inside HackerRank's LLM-based Hiring Agent

blog.grandimam.com
1 points·by grandimam·12 часов назад·0 comments

The math that makes senior engineers look like a bad deal

blog.grandimam.com
2 points·by grandimam·4 дня назад·0 comments

Repricing of Software Engineering Labor

blog.grandimam.com
5 points·by grandimam·16 дней назад·0 comments

[untitled]

1 points·by grandimam·23 дня назад·0 comments

[untitled]

1 points·by grandimam·2 месяца назад·0 comments

Ask HN: Why hasn't automation testing been disrupted with LLMs?

1 points·by grandimam·3 месяца назад·0 comments

[untitled]

1 points·by grandimam·3 месяца назад·0 comments

[untitled]

1 points·by grandimam·3 месяца назад·0 comments

Show HN: Building your first ASGI framework – step-by-step lessons

2 points·by grandimam·4 месяца назад·0 comments

Show HN: Pure Python web framework using free-threaded Python

github.com
3 points·by grandimam·4 месяца назад·0 comments

Show HN: A pure Python HTTP Library built on free-threaded Python

github.com
2 points·by grandimam·4 месяца назад·0 comments

Tell HN: Thoughts on the Future

2 points·by grandimam·5 месяцев назад·1 comments

Ask HN: Would you hire someone who codes only using agents?

1 points·by grandimam·7 месяцев назад·3 comments

ChatGPT Apps

techcrunch.com
1 points·by grandimam·7 месяцев назад·2 comments

Journaling and Prompting

1 points·by grandimam·7 месяцев назад·0 comments

Ask HN: What is Fullstack Engineering?

2 points·by grandimam·7 месяцев назад·1 comments

Thoughts on Cursor

1 points·by grandimam·7 месяцев назад·1 comments

AI-Native vs. Anti-AI Engineers

1 points·by grandimam·7 месяцев назад·1 comments

Ask HN: What has been your experience with Agentic Coding?

7 points·by grandimam·7 месяцев назад·7 comments

comments

grandimam
·3 дня назад·discuss
The rewrite itself is amazing, but I don't think folks realise the actual conditions that made it possible. It's not as simple as a company spending ~$160K on tokens.

This was done by someone who has essentially already rewritten Node once. Bun itself is a reimplementation of Node, so the author was walking in knowing exactly what the correct behavior is. And an exhaustive amount of test suite to verifiy the changes?. On top of that, there is a reference from Node and V8 to validate more throughly. So the $160K is simply the price of translating knowledge that already lived in one engineer's head in a newer syntax.
grandimam
·5 дней назад·discuss
I have always found similarities between programming and filmmaking.

Programmer being the director and the LLM being the entire apparatus upon which the film/software is built. This became evident to me while doing spec-driven development for a few of my projects where I specify the constraints upon which the software should be build, but have limited control over the performance similar to how a director has limited control over an actor's performance.
grandimam
·14 дней назад·discuss
Nice writeup. If I am reading it right, the core bug was that two independent paths each generated the per-invocation namespace, and the fix was to generate it once and propagate it to the workers. That reads more like an implementation slip than a design failure. The multi-level naming scheme is sound, it just has to be computed in exactly one place.

The part I would actually love more detail on is the agent side. How are you orchestrating agents to fan out the test runs?
grandimam
·2 месяца назад·discuss
I agree with some of reasonings in the article especially around agents write behaviors. However, a large portion of this is a consequence of poorly-defined agent roles, and moving away from building deterministic systems.

> An agent working on a customer analytics task might issue a join across five tables that has never been issued before, hold the connection while it thinks about the result, then issue a completely different follow-up.

Aren't agents simply automated human persona's? Like, why would an Agent make a join across five tables given that its reasoning is grounded on human-aligned decisions. For eg.

If the agent knows the schema, and is aware of the indexes defined. Then, shouldn't it only work its way through those 'known paths'. Why would you allow the agents to deviate known paths?
grandimam
·3 месяца назад·discuss
[dead]
grandimam
·6 месяцев назад·discuss
This is good. Its well positioned for software engineers to understand DL stuff beyond the frameworks.