HackerTrans
TopNewTrendsCommentsPastAskShowJobs

tiltowait

1,119 karmajoined 3 jaar geleden

comments

tiltowait
·eergisteren·discuss
Out of curiosity, why put "router" in quotes?
tiltowait
·vorige maand·discuss
> Yes, it comes apart every so often

Laces type matters a lot here. I've run countless miles with a fast knot without it ever coming undone.

The secure knot does feel like a cheat, though. It's like a double knot that you can untie like a single. Witchcraft!
tiltowait
·2 maanden geleden·discuss
I do this all the time at my job, without issue. I think it's honestly easier than using plain git.
tiltowait
·2 maanden geleden·discuss
> Applications like Google Docs would be impossible without each of the four things you listed being available.

I was already in favor of banning it. You don't have to keep trying to convince me.

Okay, snark off. But as someone who dislikes the proliferation of "web apps", I'd be perfectly happy to see Google Docs and others die off if it meant we moved back to real, locally run applications.
tiltowait
·2 maanden geleden·discuss
> scrolling: used by games, maps, image viewers

Out of curiosity, does anyone like the way Google Maps hijacks scrolling? I use a trackpad. When I scroll, I'd want it to pan around on the map, not zoom in and out (which always feels awful as a scroll action and never stops where I want it to).

Click-drag to pan doesn't feel nice.

It doesn't really matter anymore, since 99% of maps use is on mobile now, but this was always a small pain point to me in the past.
tiltowait
·3 maanden geleden·discuss
There are several different, sometimes overlapping markets for them.

Reptile and amphibian keepers use them, along with live plants, to set up a bioactive tank that is relatively self-cleaning and self-maintaining.

Keepers of very small reptiles sometimes maintain colonies as feeder insects.

And still others skip the scaly middlemen and keep isopods as pets. They can get hilariously expensive. Just a couple of years ago, rubber duckies (featured on this site) used to be $90 a pop due to their rarity and difficulty in keeping them. Since they exploded in popularity, however, they're a much more reasonable^1 $15 a head or so.

[1]: For certain definitions of reasonable.
tiltowait
·3 maanden geleden·discuss
Interesting! To join the cavalcade of others sharing their experiences:

I first asked it "how big are geckos". It gave me a cool comparison diagram between three gecko extremes (leachianus, Jaragua dwarf gecko, and leopard gecko, if curious). Info all looked correct. Drilling into the Jaragua brought me to a less-impressive page with utter gibberish text and duplicated info boxes. So it goes. I drilled further, but they were more esoteric topics I'm less versed on (lamellar setae), I can't evaluate the accuracy without further research.

I also gave it something broader: "tokay gecko". More duplicate info boxes, and for some reason it "drew" two geckos on top of each other. Kind of cute, but tokays are extremely territorial, so happy cohabitation isn't their default (though it's not unheard of).

Still, despite the issues, I thought it was very neat.
tiltowait
·3 maanden geleden·discuss
Prior to 2016, he was better. Since then, he regularly posts about Trump, and whatever you think of Trump, those posts are seldom more than random ranting: devoid of substance or insight. Other times, they're just links to someone else's random, substanceless Trump rant.

It's a real shame, because he can be genuinely insightful when it comes to computing topics (and Apple in particular, obviously). That said, I do find his podcast much more bearable. Not zero-Trump, but less Trump.
tiltowait
·3 maanden geleden·discuss
I assume you mean Kobo, not Roku?
tiltowait
·3 maanden geleden·discuss
There's research[1] suggesting readers of physical books have greater reading comprehension than readers of eBooks. Anecdotally, I feel that describes me well.

[1] https://www.psychologytoday.com/us/blog/well-read/202402/the...
tiltowait
·3 maanden geleden·discuss
I tend to approach jj commits as local PRs. Decide what it is I'm working on, make a new, empty commit on top of that :

    jj new -m 'do thing'
    jj new
As I work on the "local PR", I `jj squash` my working changes into the named commit. By keeping my working commit description-free, I avoid accidentally pushing it (and potentially broken code) to origin.
tiltowait
·3 maanden geleden·discuss
If you've never played it before, Dark Castle really is worth looking at. Its artwork is incredible even before considering the constraints, and its gameplay holds up remarkably well for something from 1986.
tiltowait
·4 maanden geleden·discuss
As I scrolled down, one of the animations started and brought up a subscription modal. "Okay, that one would be enraging," I thought, delighted, as I waited for the animation to loop.

It didn't. It was the site's real subscription modal.

I feel like there's a lesson in there.
tiltowait
·5 maanden geleden·discuss
Claude's willingness to poke outside of its present directory can definitely be a little worrying. Just the other day, it started trying to access my jails after I specifically told it not to.
tiltowait
·5 maanden geleden·discuss
The raft of outages lately (my company was disrupted by I think four last week?) have certainly (and deservedly) created some pent-up frustration. I'm personally frustrated with its poor performance on Safari.

Overall, though, it's ... fine. That's all. A little worse than it used to be, which is frustrating, but certainly nowhere near unusable. I stood up my own forge and mirror some repos to it. The performance is almost comically better. I know it's not a fair comparison: I have only one user. On the other hand, I'm on a 9-year-old Xeon located geographically farther from me than GitHub's servers.
tiltowait
·6 maanden geleden·discuss
fish is a bit insonsistent on it. For instance, `git add <tab>` will only autocomplete for modified files. It will also fill in wildcards, e.g. `cat *.txt <tab>` will expand to show all .txt files. On the failure side, `rm foo <tab>` will still show `foo` as an option.

IME, zsh has better autocompletion (which, at the time at least, was a separate install).
tiltowait
·6 maanden geleden·discuss
ZFS will happilly (and intentionally) gobble up available RAM for ARC. On my 64GB system, ARC is using 42.4GB, but this memory is quickly reclaimable if it's needed. That said, I had very bad experiences trying to run ZFS on an underprovisioned system.
tiltowait
·7 maanden geleden·discuss
Traffic fatalities increased during the pandemic[1]. AAA released a study examining the effects in 2024[2].

[1]: https://pmc.ncbi.nlm.nih.gov/articles/PMC10149345/ [2]: https://newsroom.aaa.com/2024/08/the-pandemics-tenacious-gri...
tiltowait
·7 maanden geleden·discuss
> The vast majority of humans are not benefiting from it and are therefore motivated against it.

The vast majority of humans do not benefit from you, personally, owning a car, but that doesn't mean we're all motivated to call a towing company to your house.
tiltowait
·7 maanden geleden·discuss
> Rust has a standard library that looks an awful lot like Python or Ruby, with similarly named methods.

Can you elaborate? While they obviously have overlap, Rust's stdlib is deliberately minimal (you don't even get RNG without hitting crates.io), whereas Python's is gigantic. And in actual use, they tend to feel extremely different.