Skip to content

Instantly share code, notes, and snippets.

View TheBestPessimist's full-sized avatar

TheBestPessimist TheBestPessimist

View GitHub Profile
@TheBestPessimist
TheBestPessimist / Youtube - Automatically receive an email when a subscribed channel uploads a new video via Inoreader.md
Last active March 30, 2026 15:50
Youtube - Automatically receive an email when a subscribed channel uploads a new video via Inoreader

I created this in a response to someone on [[Reddit]]: https://www.reddit.com/r/InoReader/comments/1ghrz4c/comment/oc0bv1o/

Unfortunately [[Reddit]]'s [[Markdown]] implementation also sucks, like [[Obsidian]]'s and everybody else's, so I also put this on [[Github]]: https://gist.github.com/TheBestPessimist/2419b412a0be457eb4db89cd44255650

Here's a story:

At some point in the past, [[Youtube]] decided to be a bunch of [[Fuck You|cunts]] and disabled the 'Email when channel uploads a new video' feature for everybody So if you wanted to be notified that a channel you care about uploaded a new video, you had the following options:

  • subscribe and ENABLE ALL NOTIFICATIONS
  • Pay attention to not enable only some notifications, as that meant [[Youtube]] decided what you wanted to watch and what you didn't
1. **Writing quotes nested into lists is fucked**
- https://forum.obsidian.md/t/incorrect-indentation-behavior-with-quotes-and-item-lists/62714/3 - this is my actual bug report!
Other bugs about quotes:
- https://forum.obsidian.md/t/editor-live-preview-support-quotes-quotation-in-list-items/29582/
- https://forum.obsidian.md/t/editing-view-broken-indentation-around-quote-block/60333
- https://forum.obsidian.md/t/editing-view-broken-quote-indentation/60335
- Sleep doesn't work (when waking up from sleep, the screen doesn't turn on)
- Shutting down doesn't work sometimes. It gets stuck at the "Shutting down" screen for 5+ minutes
- Changing to ECO mode consumes MORE battery than staying in STANDARD. This means OPTIMIZED mode is also broken
- when screen turns off, laptop enters sleep EVEN THOUGH I DISABLED THAT. You are killing my work VPN EVERY GOD DAMN TIME
- Intel video driver is very very outdated (2023-08)
- The dolby application is very slow to start
- Armoury Crate is horrible to use: slow, extremely confusing
- Some keys have ghost presses, so sometimes while typing a character appears twice or trice
- "Rotation Lock" quick-access tile is disabled when i use my laptop normally, and it gets enabled only when i rotate my laptop. Did you ever consider i might not want laptop rotation in some cases, even though it's rotated at 50 dgrees?
- Your "AsusSurvey" app doesn't allow newlines. WTF?!
@TheBestPessimist
TheBestPessimist / The Actually Complete Filthy Frank Show
Last active November 3, 2024 06:08
The Actually Complete Filthy Frank Show
magnet:?xt=urn:btih:77bbfb32ee38134bf203a2bf3048e4be882c11a1
@TheBestPessimist
TheBestPessimist / Git branching workflow when you have big and interdependent branches.md
Last active January 25, 2023 09:21
Git branching workflow when you have big and interdependent branches

The key for our workflow now is (imo) the following settings in gitlab/repository/settings/Merge Requests:

  • Merge method: Merge commit with semi-linear history.
    You want to use this one because it forces you that before a merge into master, your branch contains the latest master commit. This helps with ordering the commit history in intellij :).
  • Squash commits when merging: Allow
    Some branches dont need to have the history of all the commits, so the branch developer may chose this option in the merge request. It is unchecked by default, but the dev has the option to use it. Use your judgement.
  • Merge commit message template:
Merge branch '%{source_branch}' into '%{target_branch}'