sem
Is it Cthulhu?
I heard that in USA Telegram is used mostly by conservatives, trans-haters and drug dealers. But in Russia where I was born and where I have been living until the war, Telegram was a single source of alternative news and the main tool for opposition to putin. I had a talk with an Iranian guy recently and he told me the same: in Iran Telegram is the only source of non-state-propaganda news.
I do not care that Durov is just a billionaire who makes money on the trend of privacy. But I remember how Telegram successfully fought against attempt of blocking in Russia in 2018 by providing regular updates and using different techniques to avoid blocking. An attack on Telegram for me is an attack on the latest opposition to putin, khamenei, lukashenko and others.
No, I have two different things:
- org-mode files with schedule, diary, tasks, etc.
- knowledge base, org-roam (orgnote). I have a single base but it contains graphs about topics and these graphs are not connected
I like that approach, because I use orgzly-reviwed on Android with a notifications. And because it is simpler to maintain knowledge base.
Yes... org-mode is more than 20 years old... It is a price of flexibility: I have a strong feeling that one can adjust org-mode to any workflow. But I do not use even a third of the org specification. There are a lot of cool blog posts like "org mode quick start" or "org mode basics", I would recommend to start from such posts, not from a documentation.
For me one of the most flexible and mature way to knowledge base, tasks and notes is an org-mode.
I have two main workflows. The first one is task management. I have a lot of recurring tasks with tags, deadlines, schedules, etc. All of them are living in org-files in my Nextcloud. On Android I'm using orgzly-reviwed for sync via WebDAV, on my work I'm using organice (via WebDAV) as a "web-version" and also I'm editing my notes in emacs on my laptop (but actually any text editor could be used).
The second one is a knowledge base. I'm using org-roam locally (and with a localhost web server, built in into emacs) and orgnote for Android/Web + synchronization. My knowledge base is Zettelkasten-based.
Orgzly-reviewed: https://github.com/orgzly-revived/orgzly-android-revived
Organice: https://github.com/200ok-ch/organice
Orgnote: https://github.com/Artawower/orgnote
Orgnote provide a way to encrypt all notes by your own key/password. With orgzly I'm relying on Nextcloud encryption.
I would refer to the recent FTC questions to "algorithmic pricing practices". Long story short it was about some companies are using browser data, accounts data, etc. for "smart" pricing. Your brother may not care about someone watching him but I don't think he wants to pay for the same goods more than others.
I do not like the idea of the collective guilt. It is totally right imo to hate politicians and soldiers. But to hate the whole country is a bad way imo.
If I already use Pandas for processing my data in-memory, CoW can significantly improve the performance. That was my point.
If you are doing data processing in pandas CoW allows to avoid of a lot of redundant computations on intermediate steps. Before CoW any data processing in Pandas required manual and careful working with code to avoid the case described in the blog post. To be honest I cannot imagine the case of offloading each result of each operation in the pipeline to the storage…