Spyke

Replies

Comment on

Play Store Requirement

Reply in thread

Since I have a degoogled phone, I got a USB Bluetooth dongle for my server. If you use docker (like me) it is a bit tricky but doable. I was furious thinking Google is unavoidable, but it is just a sign of how bad android is tide to google...

Comment on

moving from nextcloud to opencloud

Reply in thread

You can totally do that in nextcloud. All your file structure is keeped in the directory of nextcloud. The database only keep metadatas about what is shared and such things. One soft that strip the file structure and store it only as metadata in a database is Seafile. For your usecase, you can drop your files in your nextcould directory at the right place and invoke the command occ files:scan. It doesn't watch for file changes, but you could certainly setup a Cron or a script to invoke it remotely.

Comment on

*Permanently Deleted*

If you want, here is my framework when I am full of frustration but seek answers:

  1. Open new file
  2. Write my thoughts unleashing all the frustration I have
  3. Calm down
  4. Put the file to trash
  5. Open new file
  6. Write my thoughts and question in a respectful way to engage in healthy conversation
  7. Copy and send online

Comment on

i want to learn/use functional programming language

You can do FP in any programming languages, some are just focusing more on it than others. With OCaml, you will have what might be the best type system of the world. With Haskell, purity everywhere. With clojure, Lisp which is awesome. So Ruby should just fit, here are some resources to make you understand what is FP :

Another interesting resource is how John Carmack talk about potential use of purity (with haskell in its case) in event passing to entities in video game at the Quake Con 2013 (~17min 30). It made me better understand how pure and impure code should coexist.

You reached the end