nohope | 3 years ago | on: Everything as a Service
nohope's comments
nohope | 4 years ago | on: Ask HN: Are new ThinkPads still worthy?
I'm typing this comment in my lovely T440, but my next laptop will probably not be a Thinkpad. They are great, but having one doesn't payoff nowadays (YMMV).
nohope | 6 years ago | on: C++ RPC Library – Based on Protobuf, and Core Library Independent of Network
nohope | 6 years ago | on: Think young people are hostile to capitalism now? Wait for the next recession
Chile? Just look how people are satisfied with their system nowadays... Behind seeming positive macroeconomic numbers, there is a very unequal society. Chile is the most unequal society among all OECD members. The riots that happen there right now are not against any socialism, but against the liberal fail. They followed strict liberal rules since Pinochet dictatorship, and that is what it became.
nohope | 6 years ago | on: Think young people are hostile to capitalism now? Wait for the next recession
You are right, and that is exactly the problem, since it is something history proved impossible to be reformed.
EDIT: reforming capitalism is a long term desire from part of the humankind. It is not a new idea and has yield very long discussions [1]. So, the big idea today is indeed how to overthrow it in favour of another form of social organization.
[1] https://www.marxists.org/archive/luxemburg/1900/reform-revol...
nohope | 6 years ago | on: Think young people are hostile to capitalism now? Wait for the next recession
Even in "western" rich countries there is a lot of growing unequality. The capitalism is falling by itself.
nohope | 6 years ago | on: Ask HN: Resources for getting started with bare-metal coding?
nohope | 6 years ago | on: How I Consume Books
nohope | 7 years ago
nohope | 7 years ago | on: Writing an OS in Rust: Introduction to Paging
nohope | 7 years ago | on: Ask HN: How do you organise your hard drive?
One of the computers I use stay turned on for long times, so I have /tmp/t and a cronjob that cleans all files older than 1 day in this directory:
# Remove all files in /tmp/t older than 1440 min (one day)
*/10 * * * * find /tmp/t -cmin +1440 -delete > /tmp/.find-delete-1440.log 2>&1
Besides that, I have a lot of bunches in $HOME. dot.files, dot.vim, dot.mutt, etc., are all in private git repositories and I have a "~/s" directory I keep synchronized among different machines with rsync (I don't trust Google nor Dropbox). I was thinking about starting using Syncthing [1], though.nohope | 8 years ago | on: Wapp – a single-file web framework by the creator of SQLite
I always found interesting how the Tcl community solve things, using simple and powerful Tcl metaprogramming features (see beautiful examples on wiki.tcl.tk).
I've done a couple of small business solutions in Tcl/Tk as desktop applications. Now I feel more encouraged to try to develop new ones for the web :-)
nohope | 8 years ago | on: Using a logbook to improve your programming
For more structured documentation, I keep separated text files for each solution that I can easily find if I need it later.
EDIT: Also, scratching your plan with pencil and paper before implementing it helps a lot.