HackerTrans
トップ新着トレンドコメント過去質問紹介求人

renmillar

no profile record

コメント

renmillar
·5 か月前·議論
GP’s car just isn’t trained well enough
renmillar
·5 か月前·議論
That last part is a real one though, mine tried to debug a Dockerfile by poking around my local environment outside of Docker today.
renmillar
·5 か月前·議論
> Hiding applications is a pretty key concept in MacOS. Shortcuts are pretty straightforward? Cmd+H to hide, Cmd+Q to quit. Spaces aren’t hidden- there’s lots of ways to access them, but it seems you haven’t bothered to learn them.

They're not talking about Cmd+H hiding or virtual desktops - those exist on Windows too. The issue is how macOS handles window placement with zero visual feedback.

For example, when you open a new window from a fullscreen app, it just silently appears on another space. No indicator, no notification. You're left guessing whether it even opened and where it went. The placement depends on arcane rules about space layout, fullscreen ordering, and external displays - and it's basically random half the time. You either memorize the exact behavior or manually search through all your spaces.
renmillar
·5 か月前·議論
It really isn’t like that for me though. The bugs are consistently there regardless of how old the OS install is. I don’t get more when I haven’t done a fresh install in a couple years.
renmillar
·5 か月前·議論
Did you use metallic nail polish? Or is your skin just barely not making contact with the screen?
renmillar
·5 か月前·議論
I got anxious about autocorrect potentially inserting the wrong words and what kind of social fallout that could cause, so I just disabled it entirely. Takes longer to type everything manually but at least my anxiety has gone down.
renmillar
·5 か月前·議論
I'm running Tahoe on an M1 Air with 16GB RAM and it's been smooth for me. Might be worth trying a fresh OS install? Something seems off with your setup.
renmillar
·10 か月前·議論
In my experience, this only holds true for small scripts. When you're doing scientific computing or deep learning with data flowing between different libraries, the lack of type safety makes development much slower if you don't maintain strict discipline around your interfaces.
renmillar
·10 か月前·議論
> what do you mean a latitude and longitude doesn’t mean anything without a bunch more info?!

Is the more info just the coordinate system like WGS84, or am I missing something else?
renmillar
·10 か月前·議論
If someone competent wanted to take over my important work projects (deployment systems, core code maintenance, etc.), I'd gladly hand them over. I could orphan them right now claiming I need time for immediate tasks, but I don't want to dump unmaintained code on my team. I'd guess open source maintainers feel even more responsible since they see their work as community service. Maybe dropping the project is what's needed to trigger a well-funded fork or get corporate attention, similar to how Heartbleed affected OpenSSL.
renmillar
·10 か月前·議論
Step 4: it's someone else's problem, win
renmillar
·10 か月前·議論
If you flip one upside down and attach it to another one, you end up with a stable phone that has twice the battery life.
renmillar
·10 か月前·議論
I’d suggest the simple approach: run that script through Claude and have it extract just the email processing parts to create a clean CLI tool. This seems like exactly the type of refactoring task that LLMs are really good at.
renmillar
·10 か月前·議論
Would probably be different if NVIDIA viewed it as competition for data center market share
renmillar
·10 か月前·議論
Honestly, these alternatives just don't stack up against Excel. Even setting aside the advanced stuff like complex data analysis and macros that some organizations rely on, Excel is simply more robust and user-friendly. Google Sheets feels like a toy in comparison.
renmillar
·10 か月前·議論
Better smartphone integration makes more business sense when you can target the entire market instead of just half of it.
renmillar
·昨年·議論
Yes, are they going for enterprise licensing or something similar to JetBrains' approach?
renmillar
·昨年·議論
Why don't you just run ty on the ty codebase and let it tell you which errors are correct and which are erroneous?
renmillar
·昨年·議論
Python's static checking capabilities could significantly improve both tracing and compilation efficiency. The language features that currently limit type checkers are likely the same ones making efficient compilation difficult. Perhaps we'll eventually see a Python 3.40 with complete JIT compilation, functioning similarly to Julia but retaining Python's extensive ecosystem that makes it essential in certain domains.
renmillar
·昨年·議論
IMO creating custom rules is problematic - when projects import external code, rule conflicts become inevitable. C++'s type system might be complex, but at least there's consistency across header files within a project.

Regarding type checkers: while I don't love optimizing code just to make them run faster, most Python patterns can be implemented in statically checkable ways without much compromise. The benefits typically outweigh the costs. Python's dynamic features are powerful but rarely essential for everyday tasks.