HN user

cloogshicer

2,241 karma
Posts37
Comments497
View on HN
www.youtube.com 1y ago

The issue with Git cherry-pick [video]

cloogshicer
2pts0
news.ycombinator.com 1y ago

Ask HN: Is this VSCode extension malicious?

cloogshicer
3pts3
news.ycombinator.com 2y ago

Ask HN: How to Reduce Screen Time?

cloogshicer
2pts4
www.cell-lang.net 2y ago

Cell-Lang: Why relations are better than objects

cloogshicer
3pts1
news.ycombinator.com 2y ago

Ask HN: Create interactive animations like on ciechanow.ski?

cloogshicer
2pts2
news.ycombinator.com 2y ago

Ask HN: Report company sending out marketing emails without unsubscribe link?

cloogshicer
11pts7
www.youtube.com 3y ago

Why science is not always right – Edward Frenkel and Lex Friedman [video]

cloogshicer
2pts0
news.ycombinator.com 3y ago

Ask HN: What do you wish more programmers knew about?

cloogshicer
3pts4
www.cell-lang.net 3y ago

Cell lang: Why relations are better than objects

cloogshicer
2pts1
news.ycombinator.com 3y ago

Ask HN: What's the difference between a specification and an implementation?

cloogshicer
2pts11
news.ycombinator.com 4y ago

Tell HN: Do not use GitHub Classroom. It is buggy and unreliable as hell

cloogshicer
2pts0
news.ycombinator.com 4y ago

Backblaze restore for Personal Backup is awful

cloogshicer
203pts230
swiftstudent.com 5y ago

URLSession and Result

cloogshicer
1pts0
news.ycombinator.com 5y ago

Ask HN: In which types of software is raw computational power the bottleneck?

cloogshicer
10pts8
tomasp.net 5y ago

Can programming be liberated from function abstraction? (2016)

cloogshicer
2pts1
hiringengineersbook.com 5y ago

How to disable quarantine pop-ups in macOS Big Sur

cloogshicer
4pts2
news.ycombinator.com 5y ago

Ask HN: Why aren't we building a database of formally verified software?

cloogshicer
19pts24
hiringengineersbook.com 5y ago

Peter Naur's view of programming

cloogshicer
292pts190
hiringengineersbook.com 5y ago

Give developers more autonomy

cloogshicer
1pts0
news.ycombinator.com 5y ago

Ask HN: Which CMS would you use in 2021 and why?

cloogshicer
1pts3
news.ycombinator.com 5y ago

Ask HN: Good general overview of computational models and their limitations?

cloogshicer
1pts0
news.ycombinator.com 5y ago

Ask HN: Is there a native video chat tool that doesn't use the browser/WebRTC?

cloogshicer
1pts2
nocrunchgames.com 5y ago

NoCrunchGames: Find game studios that have spoken out against crunch

cloogshicer
1pts0
www.youtube.com 5y ago

The Onion: Facebook Employees Struggle to Care About Unethical Practices [video]

cloogshicer
1pts0
chrome.google.com 6y ago

Google Meet Grid View (see everyone)

cloogshicer
1pts0
news.ycombinator.com 6y ago

Ask HN: Video chat tool with low CPU usage?

cloogshicer
1pts5
news.ycombinator.com 6y ago

Ask HN: How can I buy a quiet fridge?

cloogshicer
2pts5
news.ycombinator.com 6y ago

Ask HN: Is there a video conferencing tool with positional audio support?

cloogshicer
1pts2
news.ycombinator.com 6y ago

Ask HN: A real-life use case for Lisp macros that beginners can understand?

cloogshicer
5pts7
www.nature.com 7y ago

A two-qubit gate between phosphorus donor electrons in silicon

cloogshicer
1pts1

Native iOS is significantly worse than SwiftKey and doesn't support multiple languages without having to switch the keyboard constantly. In SwiftKey you can mix languages.

I'd also be very interested in SwiftKey alternatives, since MS already almost killed it once.

I think that's a false dichotomy. The examples the author gives would not be slower in any way if done correctly.

Swift 6.3 4 months ago

But you have to know all of them to read other people's code.

To answer your question: I would immediately get rid of guard.

Also, I think the complexity and interplay of structs, classes, enums, protocols and now actors is staggering.

Genuine question, will this actually give you the latest solid local model?

I would've thought no, because of the knowledge cutoff in whatever model you use to download it.

If you have a policy in place that forces engineers to wait for review before merging each PR, then yes, by definition they have less autonomy. It might still be worth the trade off in your situation, but I like the suggestion in the article where senior devs can decide themselves whether they want their code reviewed or not.

I've had Claude Code write an entire unit/integration test suite in a few hours (300+ tests)

I'd love to see someone do this, or a similar task, live on stream. I always feel like an idiot when I read things like this because despite using Claude Code a lot I've never been able to get anything of that magnitude out of it that wasn't slop/completely unusable, to the point where I started to question if I hadn't been faster writing everything by hand.

Claiming that software is now 90% cheaper feels absurd to me and I'd love to understand better where this completely different worldview comes from. Am I using the tools incorrectly? Different domains/languages/ecosystems?

Steam Frame 8 months ago

Genuine question, if you already own an Index, why would you also get this? Wireless functionality, or something else?

Use Your Type System 12 months ago

There is a major difference at the call site.

try/catch has significantly more complex call sites because it affects control flow.

I think what people really mean when they say "This can't be tested" is:

"The cost of writing these tests outweighs the benefit", which often is a valid argument, especially if you have to do major refactors that make the system overall more difficult to understand.

I do not agree with test zealots that argue that a more testable system is always also easier to understand, my experience has been the opposite.

Of course there are cases where this is still worth the trade-off, but it requires careful consideration.

Thanks for your response! Don't you lose the main advantage of the monorepo then, since you can no longer rely on the fact that all the code at any one commit in history fits together? Or are there other significant advantages that still remain?