diff --git a/data_static/BlogPost.csv b/data_static/BlogPost.csv index 56e986c..7d4e750 100644 --- a/data_static/BlogPost.csv +++ b/data_static/BlogPost.csv @@ -2310,3 +2310,65 @@ state=`./current.sh | cut -f4 -d' '` Voala! That was fun 🙂😊 " +20201201,20201201_afterlife.md,Afterlife,"There is nothing more final than death; I had both my grandmas die within a year about a decade ago and it's really this terrible empty feeling and all the good memories just come every once in a while and wash you away unexpectedly - time is the only healer. People left behind who have spent a long time feel the miss the most and again, time is the only medicine, no substitute can be enough to fill the void but friends and family help. + +I'm quite scientific minded and of course - I wonder a lot. Although science doesn't stop belief (it actually requires it in a certain way) my mind reasons about the experience about death in a way that tries to be consistent with what I know. And that means that since we have no idea what the internal experience of dying and death might be - all bets are off. Therefore if you tell me you feel like going to heaven - okay. If you tell me you feel like there is nothing - okay. It's unknowable at this stage so any hypothesis is probably equally valid. + +I find the following reasoning for me to make it not explode into infinities. Sense of time is experienced by the brain. People in sleep and especially in general anesthesia or coma or even psychodelics report having a very different experience of time passing. It stands to reason that time after death is probably not experienced (assuming what we know about the brain and no extra-dimensions or magic soul whatever). + +However - if we continue this train of thought we can extrapolate that since (some of) the atoms that make you ""You"" are going to be recycled in the great circle of life, there might be a time that these same atoms start may make another being that is also conscious which would allow it to experience time. There is a limit to this probability and it may hit the end of Earth, Sun, and even eventually heath death of the Universe. Since you (by definition) are not experiencing time in the mean time without consciousness that would feel like a second to ""You"". + +After the heath death of the Universe mainstream physics is quite speculative. However there is a chance [1] for quantum fluctuations to allow for another Big Bang that may arrange certain atoms to make you experience time again... + +So: in that sense - I can say I believe in such ""Afterlife"" with all of the caveats that you would probably never know or remember any of your past lives and would not experience a gap in existence. + +BUT that presupposes that consciousness is nothing more than atoms/particles, that same particles in same configuration would create consciousness etc... which - we also don't know unfortunately :( and that is the weakest part of my argument and it freaks me out... + +Don't get me wrong - I understand the romanticism of The Mysterious, I like the intellectual stimulation of The Puzzle, and I enjoy having sex with some clothes on - some mystery turns me on, something for my imagination to also work with is more fun than complete nakedness for example + +[1 - ""Time for quantum effects to generate a new Big Bang, resulting in a new universe.""](https://en.wikipedia.org/wiki/Timeline_of_the_far_future#Earth,_the_Solar_System_and_the_universe)" +20210225,20210225_morse.md,Morse,"Yesterday, out of nowhere, I decided to try to learn Morse code. + +In general, I hate learning languages - I can express something already in one language and learning how to do that in another seems useless with very little added benefit. + +But Morse is a different _type_ of language - it's a different communication medium, an almost universal human-binary protocol that can be communicated through timings in different mediums including wires, light or sound. + +It can be argued that is is actually a tertiary protocol because it actually uses 3 types of signals - Dots are short signals, dashes are longer ones (3 times as long by standard) but then you also put silence between the letters (which is by standard the length of a dash or 3 beats). However if we think in binary representations - i.e. high and low set of signal - then a dot is a `1`, a dash is a `111` and silence depends on where it should be. A silence between individual dots and dashes is a single `0`. So for example letter `P` which is represented as `.--.` in binary would be `10111011101` - three one-bit silences between the dashes and the dots. When it's between letters you put a three-beats silence so `Pi` which in morse would be `.--. ..` in binary would be `101110111010001010` - notice the `000` between the letters. So it's a binary protocol and can be implemented in a any medium that supports an unambiguous high and low. + +The binary protocol kind-of-follows the frequency of the letters in English language - the most frequent letters are represented with a single character - `E` is `.`, `T` is `-` - while the less frequent ones require more - e.g. `Q` is `--.-`. It's not perfect but it's International and that's better than anything else we have. + +So I found this video that proposes two techniques: a more visual and a more audible version: + +{% rawhtml %}{% endrawhtml %} + + +The first one draws on the idea of a _binary tree_. You construct all the characters in a tree structure that starts from a root node. Every time you go left, it's a `.`, every time you go right, it's a `-`: + +![morse as binary tree](/media/20210225_morse/tree.jpg) + +The other one is associating words or phrases that can be roughly translated to the stresses and the lengths of the dots and dashes. For example the phrase `Dog did it` can be pronounced with a loong `Doog` which represents the dash and then with short `did it` which represents the shorter dots: + +![morse as mnemonic](/media/20210225_morse/mnemonics.jpg) + +The person in the video says that most professionals recommends this audible method for learning instead of the more visual binary-tree one. + +So I found another raw video from youtube that represents the sounds in triplets...: + +{% rawhtml %}{% endrawhtml %} + +...and then tried recording my own cringy voice in almost a singing fashion at the middle repeat: + +{% rawhtml %}{% endrawhtml %} + + +What I found out is that this mnemonic method really helps in one direction - if I know the letter, I can get the sound. I almost learned these already because the phrases are phrases I know, easy to associate with the letter and stresses make sense (mostly). So let's say my access in this direction (`letter->sound`) in programmatic terms is now `O(1)`. This direction corresponds to the writing operation - so if I have a word or a sentence I can now (almost) translate it already to sounds. + +However the other direction (`sound->letter`) is much harder. Listening to this long training video for single letters...: + +{% rawhtml %}{% endrawhtml %} + +... I find that my association with the letter when I hear the sound is almost linear (`O(n)`) in speed - I try to go through each of the letters I know in order to get which one I am at. After I hear the correct letter, then it's easy to hear it the second time with the mnemonic I have. This would be the ""reading"" direction (or more like listening). + +So I'm now looking at a way to speed up the reading direction. I'm really trying to hear the sounds as the phrases but I'm still struggling. + +Anyway, it's day two and just a fun side thing. Whenever, whatever :)" \ No newline at end of file diff --git a/data_static/media/20210225_morse/mnemonics.jpg b/data_static/media/20210225_morse/mnemonics.jpg new file mode 100644 index 0000000..c8b17db Binary files /dev/null and b/data_static/media/20210225_morse/mnemonics.jpg differ diff --git a/data_static/media/20210225_morse/morse2.mp3 b/data_static/media/20210225_morse/morse2.mp3 new file mode 100644 index 0000000..b5bd39f Binary files /dev/null and b/data_static/media/20210225_morse/morse2.mp3 differ diff --git a/data_static/media/20210225_morse/tree.jpg b/data_static/media/20210225_morse/tree.jpg new file mode 100644 index 0000000..7f187be Binary files /dev/null and b/data_static/media/20210225_morse/tree.jpg differ diff --git a/webapp/models/_blog_post.py b/webapp/models/_blog_post.py index 0a0ccef..b008aa7 100644 --- a/webapp/models/_blog_post.py +++ b/webapp/models/_blog_post.py @@ -10,5 +10,8 @@ class BlogPost(db.Model, ModelController, Ownable): created_dt = db.Column(db.UnicodeText,) updated_dt = db.Column(db.UnicodeText,) + def __repr__(self): + return "{} ({})".format(self.title, self.created_dt) + index_service.searchables.append(BlogPost) diff --git a/webapp/templates/blog_post/_action_delete.html b/webapp/templates/blog_post/_action_delete.html new file mode 100644 index 0000000..79689f9 --- /dev/null +++ b/webapp/templates/blog_post/_action_delete.html @@ -0,0 +1 @@ +x \ No newline at end of file diff --git a/webapp/templates/blog_post/_action_edit.html b/webapp/templates/blog_post/_action_edit.html new file mode 100644 index 0000000..ed7010b --- /dev/null +++ b/webapp/templates/blog_post/_action_edit.html @@ -0,0 +1 @@ +e \ No newline at end of file diff --git a/webapp/templates/blog_post/_actions.html b/webapp/templates/blog_post/_actions.html new file mode 100644 index 0000000..9612f38 --- /dev/null +++ b/webapp/templates/blog_post/_actions.html @@ -0,0 +1,4 @@ +[ +{% include "blog_post/_action_edit.html" %} | +{% include "blog_post/_action_delete.html" %} +] \ No newline at end of file diff --git a/webapp/templates/blog_post/_create.html b/webapp/templates/blog_post/_create.html index 132a4cb..840025e 100644 --- a/webapp/templates/blog_post/_create.html +++ b/webapp/templates/blog_post/_create.html @@ -1,40 +1,50 @@
\ No newline at end of file diff --git a/webapp/templates/blog_post/_list.html b/webapp/templates/blog_post/_list.html index e241aa7..e51c39c 100644 --- a/webapp/templates/blog_post/_list.html +++ b/webapp/templates/blog_post/_list.html @@ -1,11 +1,3 @@ {% for instance in instances %} -