Viewing profile — raek
raek
HN member- Joined
- Fri, Feb 11, 2011, 12:51 PM UTC
- HN karma
- 29
- Public activity
- 7 items
- HN profile
- View on Hacker News ↗
About raek
Recent public activity
-
comment
Comment #28861990
I saw just now that there are also system units (started with "systemctl enable --now syncthing@USER_NAME_HERE.service", note the lack of --user). If you use those then you don't n…
-
comment
Comment #28861936
Regarding backups... Syncthing is great for propagating changes to all devices, but does not offer much in terms of backups and previous versions of files. (And I'm fine with that.…
-
comment
Comment #28861900
More information: https://docs.syncthing.net/users/autostart.html#using-system... The Debian/Ubuntu packages ship all the needed files. You only need to activate them.
-
comment
Comment #28861885
On Ubuntu (and probably other distros that use Systemd as well) you need to enable the user service manually once for your user: systemctl --user enable --now syncthing.service Thi…
-
comment
Comment #21571300
For you language nerds: the author Gretchen McCulloch also hosts a podcast, Lingthusiasm! ( https://lingthusiasm.com/ )
-
comment
Comment #8933886
You don't use another interface when thinking "IO type" instead of "IO monad". It's all about what words you use to explain the types of the interface. For example, when you write …
-
comment
Comment #8933848
Exactly. You only need to know about some primitive operations (like putStrLn and getLine), and ways to combine them (like >>, >>=, and return). This was my point when I wrote my "…