Viewing profile — ForkMeOnTinder
ForkMeOnTinder
HN member- Joined
- Sat, Jan 14, 2023, 3:13 PM UTC
- HN karma
- 1,029
- Public activity
- 178 items
- HN profile
- View on Hacker News ↗
About ForkMeOnTinder
Recent public activity
-
comment
Comment #38951727
- climate change is fake - 5G causes cancer - bitcoin is a scam Your substantive and well-reasoned argument fits right in with that list ;)
-
comment
Comment #38893934
Yeah I hate this spammy marketing speak. > Whether you've taken a few photos with your phone's camera or you're a professional photographer with terabytes of digital negatives, Adé…
-
comment
Comment #38879136
I still think noalias-by-default is the way to fix this. https://github.com/ziglang/zig/issues/1108 You get all the benefits of Zig being able to choose the function ABI, but if th…
-
comment
Comment #38868346
The SEC does this. https://www.sec.gov/whistleblower/frequently-asked-questions > The Whistleblower Program was created by Congress to provide monetary incentives for individuals t…
-
comment
Comment #38861601
How is it impossible? I would think an MD5 quine exists with probability approaching 1 as the size of the document grows to infinity. Think about the reduced problem: 1. a document…
-
comment
Comment #38835044
In a way that means the copyright lobbyists have won. You don't find the list interesting now, but 14+14 years after 1928 you would have. A lot of it would still be fresh in our co…
-
comment
Comment #38824660
So instead of "There is a good identity", GP should have said "There are about 200 good identities around the world, but if your country happens to not have a single unified ID sys…
-
comment
Comment #38824611
I'd never use an account someone else made for me either. Who knows if after you created it, you added some recovery questions or a recovery email or saved the login cookie or who …
-
comment
Comment #38824254
The problem with benchmarking that claim is there's no one true "json decoder" that everyone uses. You choose one based on your language -- JSON.stringify if you're using JS, serde…
-
comment
Comment #38816435
> There is no fair or private use of hyper-realistic fake money. What about every movie ever made where two people trade a briefcase full of cash?
-
comment
Comment #38808848
Indeed. It's a multistep process, like changing the oil in your car. Step 1. drain the old oil Step 2. pour in the new oil If you skip step 2 and damage your car, it doesn't mean o…
-
comment
Comment #38797173
I don't know what I'd do if Firefox died. Maybe it's time Firefox starts diversifying itself away from Mozilla.
-
comment
Comment #38782319
I had the opposite thought -- I bet the new color mixing will increase payload size. Which of these would you rather send over the wire? A) color-mix(in srgb, var(--primary-color),…
-
comment
Comment #38773710
> And although Google permits third-party app distribution platforms, it still requires apps to use its billing system. Can someone explain this line? If you publish an app on an a…
-
comment
Comment #38766132
alias ..='cd ..' alias ...='cd ../..' alias ....='cd ../../..' alias .....='cd ../../../..' alias ......='cd ../../../../..' alias .......='cd ../../../../../..' Merry christmas, H…
-
comment
Comment #38734120
This is just begging the question: surely you don't watch videos while driving? And if you just want the audio, there are music-focused YT apps (ViMusic, or like sibling said, YMus…
-
comment
Comment #38733764
Aren't you already trusting the maintainer by downloading and running their software? An evil maintainer can publish any hash they want, so why would they go to the trouble of maki…
-
comment
Comment #38726456
[flagged]
-
comment
Comment #38725974
fwiw electric cars date back to the late 1800s. There's no reason old ideas can't work well with new tech. https://en.wikipedia.org/wiki/Electric_car#Early_development...
-
comment
Comment #38725894
fwiw Google is attempting the same thing, but they're not doing much better. https://www.notebookcheck.net/MrWhosetheboss-video-reveals-G... > Google's Pixel 8 Pro Tensor G3 off-lo…
-
comment
Comment #38725565
Definitely the two columns for me. It's super annoying skimming a paper and having to scroll down and back up again in a zig-zag pattern.
-
comment
Comment #38722568
It's useful even without async too. Our codebase has some trait methods that return boxed iterators and I'm very much looking forward to switching them to impl Iterator instead.
-
comment
Comment #38708608
So this is targeted at people who don't want to set up syncthing? What I like about Obsidian is it's literally just a bunch of markdown files, you can use them anywhere. With Notes…
-
comment
Comment #38704902
The easiest way to do this (in my experience) is libfaketime. I'm surprised not to see it mentioned. https://github.com/wolfcw/libfaketime
-
comment
Comment #38702303
> Does JS allow arbitrary objects as keys? Object doesn't, but Map does. It's generally a good idea to use Map anyway for dynamic keys.