Ghibli's released more than a 1000 images from their filmography which can be downloaded for free.
I just completed "Handy Haversacks" - Day 7 - Advent of Code 2020 https://adventofcode.com/2020/day/7 #AdventOfCode
My solution: https://github.com/debajit/advent-of-code-2020/blob/main/day07/day07.org
I just completed "Custom Customs" - Day 6 - Advent of Code 2020 https://adventofcode.com/2020/day/6 #AdventOfCode
My solution: https://github.com/debajit/advent-of-code-2020/blob/main/day06/day06.org
I just completed "Binary Boarding" - Day 5 - Advent of Code 2020 #AdventOfCode https://adventofcode.com/2020/day/5
My solution: https://github.com/debajit/advent-of-code-2020/blob/main/day05/day05.org
I just completed "Passport Processing" - Day 4 - Advent of Code 2020 #AdventOfCode https://adventofcode.com/2020/day/4
My solution: https://github.com/debajit/advent-of-code-2020/blob/main/day04/day04.org
I just completed "Toboggan Trajectory" - Day 3 - Advent of Code 2020 #AdventOfCode https://adventofcode.com/2020/day/3
My solution: https://github.com/debajit/advent-of-code-2020/blob/main/day03/day03.org
I just completed "Password Philosophy" - Day 2 - Advent of Code 2020 #AdventOfCode https://adventofcode.com/2020/day/2
My solution: https://github.com/debajit/advent-of-code-2020/blob/main/day02/day02.org
I just completed "Report Repair" - Day 1 - Advent of Code 2020 #AdventOfCode https://adventofcode.com/2020/day/1
My solution: https://github.com/debajit/advent-of-code-2020/blob/main/day01/day01.org
@ck They do let you set up multiple mailboxes https://soverin.net/features . I've only used them in a personal capacity though. Their support should be able to help you with more details https://support.soverin.net
@ck Soverin https://soverin.net/ should meet most of your criteria. I've been using it for more than a year now, and have been very happy. (I was using Posteo earlier, but Soverin offers more space and features, like unlimited email addresses (including anonymized ones) and domain integration)
@emacsen Being organised is, however, not about tools.
I've done GTD for most of the 14 years I've used it with just plain text files in a directory.
Questions they tell you to ask if you find a dead body:
- Is the person really dead?
- Is whatever killed them still around?
- Is it your problem?
So far, all affirmative. Now, a question nobody did ask you to consider, but which you can't avoid:
- Is it your body?
Well, fuck.
#MicroFiction #TootFic #SmallStories
Adding some documentation to my shell scripts so that I can put them up on SourceHut later today.
I’ve been using these scripts daily, to do things like manage my music collection, manage my notes (zettelkasten), backup my stuff, and sync my files.
software question
@if I've been using 1Password for several years now. It works on Linux (via browser extension), macOS, Windows and iOS, and syncs across all of them. Haven't had any issues.
@irimi1 TiddlyWiki works offline, and you can run it locally. I've been using it as my "Zettelkasten" for a while now. (It's also a very mature yet simple webapp that you can run as a local single-file quine, or as an easy-to-install NPM package — all notes are saved as readable text). Makes linking between notes very easy. Recommended if you want to try something simple and effective :)
Emacs modes, IDEs
@amiloradovsky Have you tried dumb-jump in Emacs? It's a zero-configuration package that lets you jump quickly into and out of function definitions using just naming heuristics (hence "dumb"). Has worked pretty well for me for a variety of languages. It can also work alongside any other jump-to-definition mechanism you may already have.
@paul I used to love them a lot earlier, till I saw people add long conditions and extra parens inside the ternary statement, which I feel can often impede readability.
These days, I really like the functional if-else form in languages (like Elixir and Ruby) that support it which I personally find clearer:
```
some_var =
if condition do
some_value
else
other_value
end
```
Evil Warlock