HackerTrans
TopNewTrendsCommentsPastAskShowJobs

renmillar

no profile record

comments

renmillar
·il y a 5 mois·discuss
GP’s car just isn’t trained well enough
renmillar
·il y a 5 mois·discuss
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
·il y a 5 mois·discuss
> 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
·il y a 5 mois·discuss
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
·il y a 5 mois·discuss
Did you use metallic nail polish? Or is your skin just barely not making contact with the screen?
renmillar
·il y a 5 mois·discuss
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
·il y a 5 mois·discuss
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
·il y a 10 mois·discuss
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
·il y a 10 mois·discuss
> 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
·il y a 10 mois·discuss
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
·il y a 10 mois·discuss
Step 4: it's someone else's problem, win
renmillar
·il y a 10 mois·discuss
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
·il y a 10 mois·discuss
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
·il y a 10 mois·discuss
Would probably be different if NVIDIA viewed it as competition for data center market share
renmillar
·il y a 10 mois·discuss
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
·il y a 10 mois·discuss
Better smartphone integration makes more business sense when you can target the entire market instead of just half of it.
renmillar
·l’année dernière·discuss
Yes, are they going for enterprise licensing or something similar to JetBrains' approach?
renmillar
·l’année dernière·discuss
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
·l’année dernière·discuss
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
·l’année dernière·discuss
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.