Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
ddalcino
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
ddalcino
3mo ago
Reminds me of this other post ( https://news.ycombinator.com/item?id=48447935 ), which suggests the following solution: If you create your own `~/thunderbird` directory, then Thunderbird will stop littering your home dir
2.
▲
by
ddalcino
10mo ago
That’s what I thought too. The author appears to have tried every obvious debugging step, except for switching away from US Mobile. I’ve been using US Mobile myself for a little over a year, and I remember a period of about 2-3 months where
3.
▲
by
ddalcino
1y ago
I think you forgot one.
4.
▲
by
ddalcino
2y ago
You can also use “shift + enter” to add a newline to your input, without telling the browser to take your input yet.
5.
▲
by
ddalcino
2y ago
Maybe someone here can do it, but I can't. The Makefile tries to include something at `/usr/lib/nib/app.make`, and I don't have anything there. There are some clues at https://unix.stackexchange.com&
6.
▲
by
ddalcino
2y ago
Nicely done! I thought I was cool when I soldered my kit keyboard from KBDFans; now I gotta step up my game! Do you have a .GIF for that rotating rainbow effect, or a sound test?
7.
▲
by
ddalcino
3y ago
Sounds like a believable explanation. > I created my account two years ago in anticipation of being able to open-source more code and I wanted to reserve my name; I had a couple of forked repos but that's it.
8.
▲
by
ddalcino
3y ago
This is from 2014. Was there ever any resolution to this? I don’t see any previous discussions about this on HN.
9.
▲
by
ddalcino
3y ago
Thanks for that; this was a bit before my time. Here’s the link, if anyone wants to be entertained: https://opensource.com/life/12/5/whats-beefy-miracle-anyway-...
10.
▲
by
ddalcino
3y ago
That will just make her mad. Then she’ll steal your kayak.
11.
▲
by
ddalcino
3y ago
Archive.org link: https://web.archive.org/web/20230608135300/https://leanerclo... I think it got the HN hug of death
12.
▲
by
ddalcino
3y ago
Oops, looks like I am the 18th person to post this in 12 years: https://hn.algolia.com/?q=why+do+game+eevelopers+prefer+wind...
13.
▲
by
ddalcino
3y ago
I spotted this while reading a wonderful account of the history of 3d graphics in games at https://www.filfre.net/2023/05/the-next-generation-in-graphi... ; I thought it was worth sharing!
14.
▲
Why Do Game Developer Prefer Windows?
(softwareengineering.stackexchange.com)
1 points
by
ddalcino
3y ago
|
2 comments
15.
▲
by
ddalcino
3y ago
Would you care to elaborate on what went wrong? The other comments here make ‘automatic emergency braking’ sound like a really good idea, and it’s hard for me to imagine that this particular feature would be so problematic. If you’re talkin
16.
▲
by
ddalcino
4y ago
> Byte Order Marks have stolen hours and days of my life. Me too, to some degree. I have discovered them in a Ruby code base at work, in the middle of a line of code (copy pasted), where the Ruby interpreter thinks they are undeclared id
17.
▲
by
ddalcino
4y ago
As a US citizen, I read it as 45 miles, which is as terrible as I would expect from Facebook.
18.
▲
by
ddalcino
5y ago
In middle school I was taught that 5.25" diskettes were "floppies", and 3.5" diskettes were "hard disks", because of the hard plastic case. It was awesome.
19.
▲
by
ddalcino
5y ago
I’ve been involved with two different open source projects where, within the last couple of months, users have opened issues complaining about the shell prompts in the documentation, or PRs removing them, because it makes it too hard to cop
20.
▲
by
ddalcino
5y ago
What’s with the backlash against Rust? It literally is “just another language”. It’s not the best tool for every job, but it happens to be exceptionally good at this kind of problem. Don’t you think it’s a good thing to use the right tool f
21.
▲
by
ddalcino
6y ago
You don’t need to lower the optimization level to see what happens at the call site: you can turn the function ‘blub’ into a function prototype. The optimizer cannot in-line your code if it isn’t available. https://www.godbolt.or
22.
▲
by
ddalcino
8y ago
If you build your visitor out of lambdas, instead of a struct, you can propagate local state to the visitor easily by using lambda captures. There are good examples of this approach at https://en.cppreference.com/w/cpp&
23.
▲
by
ddalcino
8y ago
Until C++2z rolls out with match support, you can roll your own. Nikolai Wuttke gave a lecture at MeetingCpp 2018 ( https://www.youtube.com/watch?v=CELWr9roNno ) that presents code that lets you do this: // Cl