Viewing profile — Superfud
Superfud
HN member- Joined
- Tue, Mar 09, 2010, 2:33 PM UTC
- HN karma
- 102
- Public activity
- 19 items
- HN profile
- View on Hacker News ↗
About Superfud
Recent public activity
-
comment
Comment #48875626
Batteries fortunately do not destroy the raw materials they are made from. So eventually we can stop mining new raw materials once we have built enough batteries. In addition, batt…
-
comment
Comment #47319234
ddrescue can read from /dev/urandom and write to any device. This can come in handy when you have a device with bad blocks but still would like to "shred" all the still writable pa…
-
comment
Comment #42492226
A change ID is stable over time as you tweak the message of the change or the files edited by the change. Each of these changes become a new immutable git commit under the hood. Th…
-
comment
Comment #42492190
Initial empty commit with just a message you can create with "git commit --allow-empty -m'Early commit message" Then when you have the changes lined up you --amend that same commit…
-
comment
Comment #42190821
This is probably the very first thing you tried, but maybe don't cut the nail quite so short? Recommend upgrading to sharp and precise nail cutters as they make it easier to contro…
-
comment
Comment #41693719
For PostgreSQL, the manual is extremely well written, and is warmly recommended reading. That should give you a robust foundation.
-
comment
Comment #34806998
Hitting enter two times gets you out of code blocks. It's the only consistent method I have found.
-
comment
Comment #31991635
Readwise allows you to “recover” your streak if you miss a day for whatever reason. I’m sure it is for the exact reason you cite here.
-
comment
Comment #2960193
Sounds like a simple solution which gets the job done. Using whiskey_disk would reduce your typing by a bit (repeatability is nice for things done all the time), but if you don't h…
-
comment
Comment #2959636
Good question! The main benefit is you deploy directly from your git-server to your production server, instead of uploading from your own computer. This means a lot faster deploys,…
- story
- story
- story
- story
- story
- story
- story
- story
-
story
Simple git workflow with hack and ship
Branches are virtually free with git, it makes a lot of sense to create short-lived feature-branches for each new thing you start working on. This does mean a bit of shuffling back…