ChillPC

u/ChillPC@programming.dev
0 posts · 11 comments

Recent posts

No posts.

Recent comments

In France, I have 3 different banking apps that works totally fine with eos. I don't know if it would apply to your case, but it might be worth the shot

on *Permanently Deleted* · c/programming · 5 pts · 191d

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

You fool, humans are flexible enough to get used to slow experiences. Even if the average user needs to have discord, slack, 100 chrome tabs, word and any other electron app opened simultaneously, he will just go through his work. He may not be happy with it but still continue without changing his habits.

But to be honest, I goddamn hope you are right!

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.

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.