Viewing profile — P-Nuts
P-Nuts
HN member- Joined
- Fri, Jan 21, 2011, 10:14 AM UTC
- HN karma
- 44
- Public activity
- 45 items
- HN profile
- View on Hacker News ↗
About P-Nuts
No profile information was provided.
Recent public activity
-
comment
Comment #49014242
Would that be the same ID card database that got hacked earlier this year? https://www.franceinfo.fr/internet/securite-sur-internet/cyb...
-
comment
Comment #48563972
Oh and Malta was a proper holiday too, recommend the Lascaris war rooms, Mdina, and the boat trip to Gozo
-
comment
Comment #48563921
I’ve already visited all of them except Monaco, but not all in one go, just gradually across the years. Andorra I went skiing in, Vatican was a side quest in Rome, Luxembourg I jus…
-
comment
Comment #48450940
brew install notunes Another fix for this bollocks
-
comment
Comment #48029586
I have, numerous times, written significant portions of a various features within much larger products.
-
comment
Comment #48029479
I don’t find old reddit usable on a phone. That said I don’t find new reddit usable on anything.
-
comment
Comment #47742849
Is there any word on how the Artemis II heat shield fared, after the tweak to the reentry profile?
-
comment
Comment #47742818
I haven’t tried juggling for decades but I did manage to teach myself basic three-ball juggling when I was at university (any excuse to avoid revising!) I think it took me a couple…
-
comment
Comment #47609274
The heat shield on Artemis I didn’t fail in the sense that were there a crew they would have died
-
comment
Comment #47496590
Have a look at this recent Scrabble video where Claude plays semi reasonably and ChatGPT goes crazy https://youtu.be/8opLB1D_RYY (skip to 6:50 for the insanity)
-
comment
Comment #47426834
I was only granted permission to use it a few weeks ago and haven’t had time to set it up yet
-
comment
Comment #47423770
To get both blinkenlights for registers and tri-state for bus driving, use two ’574 chips in parallel rather than a ’377 behind a ’245. Tie the clock and input lines together on bo…
-
comment
Comment #47217328
You just define the structures in terms of some e.g. uint32_le etc types for which you provide conversion functions to native endianness. On a little endian platform the conversion…
-
comment
Comment #44112210
Add a comment somewhere in the middle of the code they’re working on saying /* I should always remember to lock my computer */ and amend their current commit. Maybe they’ll spot it…
-
comment
Comment #42971106
It has always slightly nagged me that web browsers don’t do as good a job as TeX at line breaking and sentence spacing.
-
comment
Comment #42874342
Many years ago my most listened song (on ripped CDs in iTunes) had a few thousand plays because I turned off my headphones (analogue wireless!) while I had a track on repeat, only …
-
comment
Comment #42640277
The subject heading of Avi’s first message is: “Guideline 1.” We look for places where the math is right. Meaning what? Meaning that pop. is about to explode- - -we can predict tha…
-
comment
Comment #42601573
Ctrl+↑
-
comment
Comment #42086771
I’ve never used Go myself, but according to this https://go.dev/doc/install/source you need a Go compiler to compile Go. However, for the early versions, you needed a C compiler to…
-
comment
Comment #41063458
You can select text in images, such as screenshots and photos. I think this still isn’t possible on Android.
-
comment
Comment #40085424
Or press the power button five times quickly
-
comment
Comment #39501948
I was in the US recently as a tourist and used an Airalo eSIM. $13 got me 10GB of 5G, data only so no calls or texts, and it used both T-Mobile and Verizon. Obviously more aimed at…
-
comment
Comment #39197784
Debuggers are nice for development but we also need to be able to analyse field issues. On-disk log files are usually too expensive so we mostly write to raw binary in-memory trace…
-
comment
Comment #39197644
Is my passport information really that precious? It doesn’t contain much that isn’t on my birth certificate, apart from my ugly mug. And quite literally anyone can get an officiall…
-
comment
Comment #39077061
To get 2, there are (at least) a couple of ways it can happen, we can do i=0,i++ and get LHS=0, now i=1,++i and get RHS=2. Or we can do i=0,++i and get RHS=1, then i=1,i++ and get …