HackerTrans
TopNewTrendsCommentsPastAskShowJobs

olvy0

no profile record

Submissions

The Intergalactic Fermi Problem

centauri-dreams.org
3 points·by olvy0·14 dagen geleden·0 comments

Bayer scores landmark victory as Supreme Court overturns Roundup verdict

fiercepharma.com
4 points·by olvy0·15 dagen geleden·2 comments

Aram Harrow, quantum researcher: 'These computers won't take 10 years'

english.elpais.com
3 points·by olvy0·vorige maand·0 comments

Researchers turn ocean dead zones into talking skies for pilots

english.elpais.com
4 points·by olvy0·2 maanden geleden·6 comments

Cyberpunk Legend Neal Stephenson: The Real Threat Isn't AI–It's Us [video]

youtube.com
2 points·by olvy0·3 maanden geleden·0 comments

ProtonOS – Bare-metal operating system written in C# (Claude-assisted)

github.com
3 points·by olvy0·4 maanden geleden·2 comments

Six Into One: The Prisoner File (1984) [video]

youtube.com
1 points·by olvy0·4 maanden geleden·0 comments

Games, Modes, and the Depth of Fewer Inputs [video]

youtube.com
2 points·by olvy0·4 maanden geleden·0 comments

'Bacterial constipation,' new disease caused by gut-drying bacteria

medicalxpress.com
4 points·by olvy0·5 maanden geleden·0 comments

C# implementation of state machine declared using fluent syntax

github.com
23 points·by olvy0·5 maanden geleden·2 comments

Oldest known cremation in Africa – mystery about Stone Age hunter-gatherers

theconversation.com
3 points·by olvy0·6 maanden geleden·0 comments

I Pushed an LLM (Claude Opus 4.1) to Its Narrative Limit

medium.com
1 points·by olvy0·7 maanden geleden·0 comments

C++ HDL (Hardware Description Language)

github.com
2 points·by olvy0·8 maanden geleden·0 comments

The Definitive Guide to Functional Programming in Cpp – ACCU 2025 [video]

youtube.com
1 points·by olvy0·8 maanden geleden·0 comments

How Linux is built with Greg Kroah-Hartman [video]

youtube.com
3 points·by olvy0·8 maanden geleden·0 comments

AI generated its first working genome: a tiny bacteria killer

sciencenews.org
2 points·by olvy0·9 maanden geleden·1 comments

ISO C++ committee has a new chief sheep herder

shape-of-code.com
2 points·by olvy0·9 maanden geleden·1 comments

Design tackles integer factorization through digital probabilistic computing

techxplore.com
1 points·by olvy0·10 maanden geleden·0 comments

[untitled]

1 points·by olvy0·10 maanden geleden·0 comments

Are We There Yet? Future of C++ Software Development – Sean Parent – C++Now 2025 [video]

youtube.com
3 points·by olvy0·10 maanden geleden·0 comments

comments

olvy0
·19 dagen geleden·discuss
Funny, I'm just reading War and Peace myself (the Anthony Briggs translation) and having the same reaction, gushing occasionally to people I know how approachable it is, and how darkly funny and modern it feels. Well, at least after passing through the first ~200 pages which are a slog. I didn't find even Tolstoy's historical musings boring, although he tends to repeat himself. And I usually suck at names, but the main characters are done so well I find them easy to remember. There aren't that many important ones despite how it seems at the start. It also serves as a fascinating peek into the daily lives of Russians of all stripes in the early 1800s.

I also had the same reaction to Crime and Punishment as the OP did.
olvy0
·vorige maand·discuss
Ha, I'm a gardener then, on my 15th year of maintenance. So halfway there according to you. Slowly, very slowly, fixing the thousands of bugs the rockstar left behind 15 years ago.
olvy0
·3 maanden geleden·discuss
Closest would be the ACCU Overload journal, freely available here [0].

There'a also Visual studio Magazine but it's obviously Microsoft-centric [1].

Also CODE magazine [2] but it's more lightweight, feels more "commercial".

[0] https://accu.org/journals/nonmembers/overload_issue_members/

[1] https://visualstudiomagazine.com/home.aspx

[2] https://www.codemag.com/magazine/allissues
olvy0
·4 maanden geleden·discuss
Exactly. Thank you for saying this.
olvy0
·4 maanden geleden·discuss
That's actually pretty close to my own career as well.
olvy0
·4 maanden geleden·discuss
I work on an ancient codebase, C# and C++ code spanning over 3 major repos and 5 other minor ones. I'm senior engineer and tech lead of my team, but I also do a lot of actual coding and code reviews. It's a somewhat critical internal infra. I'm intimately familiar with most of the code.

I've become somewhat addicted to using coding agents, in the sense I've felt I can finally realize a lot of fantasies about code cleanup and modernization I've had during the decade, and also fulfill user requests, without spending a lot of time writing code and debugging. During the last few months I've been spending my weekends prompting and learning the ropes. I've been using GPT 5.x and GPT 4 before that.

I've tried both giving it big cleanup tasks, and big design tasks. It was ok but mentally very exhausting, especially as it tends to stick to my original prompt which included a lot of known unknowns, even after I told it I've settled on a design decision, and then I have to go over its generated code line-by-line and verify that earlier decisions I had already rejected aren't slipping into the code again. In some instances I've had to tell it again and again that the code it's working on is greenfield and no backwards compatibility should be kept. In other instances I had to tell it that it shouldn't touch public API.

Also, a lot of things which I take for granted aren't done, such as writing detailed comments above each piece of code that is due to a design constraint or an obscure legacy reason. Even though I explicitly prompt it to do so.

Hand-holding it is a chore. It's like coaching a junior dev. This is on top of me having 4 actual real-life junior devs sending me PRs to review each week. It's mentally exhausting. At least I know it won't take offense when I'm belittling its overly complicated code and bad design decision (which I NEVER do when reviewing PRs for the actual junior devs, so in this sense I get something to throw my aggression against).

I have tried using it to make 3 big tasks in the last 5 months. I have shelved the first one (modernizing an ancient codebase written more than 20 years ago), as it still doesn't work even after spending ~week on it, and I can't spare any more time. The second one (getting another huge C# codebase to stop rebuilding the world on every compilation) seemed promising and in fact did work, but I ended up shelving it after discovering its solution broke auto-complete in Visual Studio. A MS bug, but still.

The 3rd big task is actually a user-facing one, involving a new file format, a managed reader and a backend writer. I gave it a more-or-less detailed design document. It went pretty ok, especially after I've made the jump to GPT 5.2 and now 5.4. Both of them still tended to hallunicate too much when the code size passed a certain threshold.

I don't use it for bug fixing or small features, since it requires a lot of explaining, and not worth it. Our system has a ton of legacy requirement and backwards compatibility guarantees that would take many days to specify properly.

I've become disillusioned last week. It's all for the best. Now that my addiction has lessened maybe I can have my weekends back.
olvy0
·5 maanden geleden·discuss
I've been using Perplexity for small, fast queries almost exclusively for the last year or so. Their Sonar model is Llama running on top of a Cerebras chip, and searches the internet in an incredible speed. Its results are astonishingly good (for a Llama model), although in more niche areas it still makes mistakes, so in those areas I usually double-check its sources or do an extra ddg search myself.

Actually I've never used chat gpt, I went straight to Perplexity after having discovered it. Their free tier is extremely generous (not even requiring an account). Not affiliated.

OP currently doesn't look it will affect that, seems like Open AI touts it for agentic coding only, not as an alternative to chat gpt, although that will probably change.
olvy0
·6 maanden geleden·discuss
Except for new files, you'd have to also run git clean -f
olvy0
·6 maanden geleden·discuss
Wallace Stevens' excellent book of poems, Harmonium, is also now free on Wikisource [0].

[0] https://en.wikisource.org/wiki/Harmonium_(Stevens)
olvy0
·7 maanden geleden·discuss
There's also bflat [0]. Not an official Microsoft product, more of a passion project of a specific employee.

"C# as you know it but with Go-inspired tooling that produces small, selfcontained, and native executables out of the box." Really impressive. Self contained and small build system.

[0] https://github.com/bflattened/bflat
olvy0
·9 maanden geleden·discuss
Just wanted to say I enjoyed your post very much. Thank you for writing it. I love D but unfortunately I haven't touched it for several years. I also have some experience writing parsers and implementing protocols.
olvy0
·9 maanden geleden·discuss
Original paper: Generative design of novel bacteriophages with genome language models

https://www.biorxiv.org/content/10.1101/2025.09.12.675911v1