<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>100WordHabit on Janusworx</title><link>https://janusworx.com/tags/100wordhabit/</link><description>Recent content in 100WordHabit on Janusworx</description><generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>feedback@janusworx.com (Mario Jason Braganza)</managingEditor><webMaster>feedback@janusworx.com (Mario Jason Braganza)</webMaster><copyright>© 2026, Mario Jason Braganza</copyright><lastBuildDate>Mon, 19 Aug 2024 14:13:31 +0530</lastBuildDate><atom:link href="https://janusworx.com/tags/100wordhabit/index.xml" rel="self" type="application/rss+xml"/><item><title>Notes to Self, Compiling Qbittorrent on a Raspberry Pi 5</title><link>https://janusworx.com/work/notes-to-self-on-compiling-qbittorrent-on-a-raspberry-pi-5/</link><pubDate>Mon, 19 Aug 2024 14:13:31 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/notes-to-self-on-compiling-qbittorrent-on-a-raspberry-pi-5/</guid><description>&lt;div style="font-size: 85%; "&gt;
&lt;p&gt;&lt;em&gt;Update, 2024-08-20:&lt;br&gt;
Added a missing step, to install the qBittorrent files to their relevant places&lt;br&gt;
Also, it had to happen. No releases for close to three months and then just as I learn to compile, a new version has to release the very next day 😂&lt;br&gt;
It gave me a chance to test my notes. It hardly took me a few minutes to get the new release in place. So all is good!&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;br&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/compilation-of-letters.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;A compilation of letters, courtesy &lt;a href="https://www.cosmos.so/e/252611461" target="_blank" rel="noreferrer"&gt;Cosmos&lt;/a&gt;&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;I wanted to always have the lastest stable version of &lt;a href="https://www.qbittorrent.org/" target="_blank" rel="noreferrer"&gt;qBittorent&lt;/a&gt; on my Pi.&lt;br&gt;
So today, I sat down and followed the project’s &lt;a href="https://github.com/qbittorrent/qBittorrent/wiki/Compilation-Debian,-Ubuntu,-and-derivatives" target="_blank" rel="noreferrer"&gt;excellent instructions&lt;/a&gt; and got it running.&lt;br&gt;
I did however stray off the beaten path a teensy bit&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;.&lt;br&gt;
I didn’t want a gui and I wanted to be able to control it with &lt;a href="https://systemd.io/" target="_blank" rel="noreferrer"&gt;systemd&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;So here’s my checklist for next release. I’m currently running &lt;a href="https://en.wikipedia.org/wiki/Debian_version_history#Debian_12_%28Bookworm%29" target="_blank" rel="noreferrer"&gt;Bookworm&lt;/a&gt; on my Pi 5&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;In case you run into problems, compile instructions are here:
&lt;a href="https://github.com/qbittorrent/qBittorrent/wiki/Compilation-Debian,-Ubuntu,-and-derivatives" target="_blank" rel="noreferrer"&gt;https://github.com/qbittorrent/qBittorrent/wiki/Compilation-Debian,-Ubuntu,-and-derivatives&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do all off this after switching to root. (or &lt;code&gt;sudo&lt;/code&gt;)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Install build tools&lt;br&gt;
&lt;code&gt;sudo apt install build-essential cmake git ninja-build pkg-config libboost-dev libssl-dev zlib1g-dev libgl1-mesa-dev&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Install Qt dependencies (&lt;code&gt;qtbase5-private-dev&lt;/code&gt; is not part of the instructions,
but compile will fail if you don&amp;rsquo;t include it)&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;br&gt;
&lt;code&gt;sudo apt install --no-install-recommends qtbase5-dev qtbase5-private-dev qttools5-dev libqt5svg5-dev&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Qt requires Python at runtime, so: &lt;code&gt;sudo apt install python3&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Install the libtorrent library. I compiled from source. Check &lt;a href="https://github.com/qbittorrent/qBittorrent/wiki/Compilation-Debian,-Ubuntu,-and-derivatives" target="_blank" rel="noreferrer"&gt;page&lt;/a&gt; for fresh instructions, if stuff here doesn’t work&lt;/p&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;git clone --recurse-submodules https://github.com/arvidn/libtorrent.git
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; libtorrent
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;git checkout RC_2_0 &lt;span class="c1"&gt;# or a 2.0.x tag&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;cmake -B build -DCMAKE_BUILD_TYPE&lt;span class="o"&gt;=&lt;/span&gt;RelWithDebInfo -DCMAKE_INSTALL_PREFIX&lt;span class="o"&gt;=&lt;/span&gt;/usr/local
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;cmake --build build -j4 &lt;span class="c1"&gt;# the -j4 is to do on four cores at once. my addition.&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;sudo cmake --install build&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;If you ever want to uninstall libtorrent, then don’t delete this
main folder. The build process would have created a
&lt;code&gt;install_manifest.txt&lt;/code&gt; in the build folder. So you can then
uninstall with: &lt;code&gt;sudo xargs rm &amp;lt; install_manifest.txt&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Get qb source: &lt;a href="https://www.qbittorrent.org/download" target="_blank" rel="noreferrer"&gt;https://www.qbittorrent.org/download&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Unzip: &lt;code&gt;tar xzvf qbittorrent-4.6.5.tar.gz&lt;/code&gt; and then
&lt;code&gt;cd qbittorrent-4.6.5/&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Create Build configuration (disabled GUI and enabled systemd. Those aren’t part of the defaults)&lt;br&gt;
&lt;code&gt;cmake -G &amp;quot;Ninja&amp;quot; -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/usr/local -DGUI=OFF -DSYSTEMD=ON&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Build &lt;code&gt;cmake --build build&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Install all the files to their relevant locations &lt;code&gt;cmake --install build&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Install service to run for a specific user.&lt;/p&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;systemctl daemon-reload
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;systemctl &lt;span class="nb"&gt;enable&lt;/span&gt; qbittorrent-nox@&amp;lt;some-user&amp;gt;.service
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;systemctl start qbittorrent-nox@&amp;lt;some-user&amp;gt;.service&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We’re done.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: Notes to Self, Compiling Qbittorrent on a Raspberry Pi 5
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;which the project does make provisions for.&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;&lt;code&gt;Target &amp;quot;qbt_base&amp;quot; links to: Qt::CorePrivate but the target was not found.&lt;/code&gt; or words to that effect&amp;#160;&lt;a href="#fnref:2" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Happy Birthday Abbygail</title><link>https://janusworx.com/personal/happy-birthday-abbygail-3/</link><pubDate>Sat, 06 Jul 2024 00:00:00 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/happy-birthday-abbygail-3/</guid><description>&lt;p&gt;&lt;br&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/happy-birthday-abbygail-2024.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;You haven’t changed a bit in all the ways that matter!&lt;br&gt;
And so …&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Haply I think on thee, and then my state,&lt;br&gt;
(Like to the lark at break of day arising&lt;br&gt;
From sullen earth) sings hymns at heaven’s gate;&lt;br&gt;
        For thy sweet love remembered such wealth brings&lt;br&gt;
        That then I scorn to change my state with kings.&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;— The Bard (as rendered by &lt;a href="https://youtu.be/6_0VBS9AOhE?t=85" target="_blank" rel="noreferrer"&gt;the Dench&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: Happy Birthday Abbygail
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Bread and Roses</title><link>https://janusworx.com/personal/bread-and-roses/</link><pubDate>Sat, 22 Jun 2024 13:59:42 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/bread-and-roses/</guid><description>&lt;p&gt;&lt;br&gt;

&lt;a href="https://janusworx.com/images/2024/bread-and-roses.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/bread-and-roses-s.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;Click the image to see the much larger, original&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;blockquote&gt;&lt;p&gt;If thou hast two loaves of bread, sell one and buy flowers,&lt;br&gt;
for bread is food for the body,&lt;br&gt;
but flowers are food for the mind.&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;— &lt;a href="https://en.wikipedia.org/wiki/Bread_and_Roses#Galen_of_Pergamon" target="_blank" rel="noreferrer"&gt;Galen of Pergamon&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;/blockquote&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;blockquote&gt;&lt;p&gt;Hearts starve as well as bodies: Give us Bread, but give us Roses.&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;— &lt;a href="https://en.wikipedia.org/wiki/Bread_and_Roses#Poem" target="_blank" rel="noreferrer"&gt;James Oppenheim&lt;/a&gt;&lt;/p&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;Reading this &lt;a href="https://neil-gaiman.tumblr.com/post/745828238034632704/elljayvee-enide-s-dear-moralistically" target="_blank" rel="noreferrer"&gt;beautiful conversation&lt;/a&gt; on Tumblr, led to this &lt;a href="https://en.wikipedia.org/wiki/Bread_and_Roses" target="_blank" rel="noreferrer"&gt;lovely page&lt;/a&gt; on Wikipedia.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: Bread and Roses
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Several Corroborative Thoughts on Pacing Yourself</title><link>https://janusworx.com/personal/several-corroborative-thoughts-on-pacing-yourself/</link><pubDate>Thu, 20 Jun 2024 14:28:43 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/several-corroborative-thoughts-on-pacing-yourself/</guid><description>&lt;p&gt;That is what I should have called, &lt;a href="https://janusworx.com/blog/note-to-self-my-new-heuristic-for-blogging/" &gt;yesterday’s post&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Pace yourself!&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Be disciplined.&lt;br&gt;
Show up.&lt;br&gt;
Do the work.&lt;br&gt;
And know when to quit.&lt;/p&gt;
&lt;p&gt;And in more serendipitious bathing and reading hijinks I came across several folks who resonated with that thought. Slowly pacing yourself and doing the work, leads to big things.&lt;/p&gt;
&lt;p&gt;Here’s Ryan Holiday, in &lt;a href="https://ryanholiday.net/37-or-so-lessons-from-a-37-year-old/" target="_blank" rel="noreferrer"&gt;37 (Or So) Lessons From A 37 Year Old&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;I struggle with calibrating how to have high standards without hanging oneself on them. Of course, deciding willy-nilly what time you start each day is a recipe for slowly, steadily drifting towards starting later and later. On the other hand, sweating five minutes here or there—especially when what you’re rushing through is school dropoff or traffic that’s outside your control—is a recipe for misery and missing the point. A book, for instance, is a project that takes months and years. Pace yourself accordingly.&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;And Cory Doctorow in his very, popular &lt;a href="https://pluralistic.net/2021/05/09/the-memex-method/" target="_blank" rel="noreferrer"&gt;Memex Method&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;These repeated acts of public description adds each idea to a supersaturated, subconscious solution of fragmentary elements that have the potential to become something bigger. Every now and again, a few of these fragments will stick to each other and &lt;strong&gt;nucleate&lt;/strong&gt;, crystallizing a substantial, synthetic analysis out of all of those bits and pieces I’ve salted into that solution of potential sources of inspiration.&lt;/p&gt;
&lt;p&gt;That’s how blogging is complimentary to other forms of more serious work: when you’ve done enough of it, you can get entire essays, speeches, stories, &lt;strong&gt;novels&lt;/strong&gt;, spontaneously appearing in a state of near-completeness, ready to be written.&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;And then there’s &lt;a href="https://calnewport.com/writing/#books" target="_blank" rel="noreferrer"&gt;Cal Newport&lt;/a&gt; with his Slow Productivity.&lt;br&gt;
I don’t even need his words to describe what he does. I have followed him and his output long enough to know his modus operandi.&lt;br&gt;
The only thing I don’t know is how he latches on to some topic.&lt;br&gt;
But once that happens, he starts blogging about it. (and now talking about it on &lt;a href="https://www.thedeeplife.com/listen/" target="_blank" rel="noreferrer"&gt;the pocdast)&lt;/a&gt;.&lt;br&gt;
His very popular Deep Work was published around 2016. A cursory search for the word “deep” in his &lt;a href="https://calnewport.com/archive/" target="_blank" rel="noreferrer"&gt;blog archive&lt;/a&gt; will show you what I’m talking about. You can see him writing, thinking, refining and coming to the core of what he wants to convey.&lt;br&gt;
Further refinement happens over on his &lt;a href="https://www.newyorker.com/contributors/cal-newport" target="_blank" rel="noreferrer"&gt;New Yorker&lt;/a&gt; column.&lt;br&gt;
And then finally, after all that slow, steady drumbeat of work comes the book.&lt;br&gt;
Small wonder, they then turn out to be evergreen titles.&lt;/p&gt;
&lt;p&gt;So there! Like Cal espouses,&lt;br&gt;
&lt;em&gt;&lt;strong&gt;1. Do fewer things.&lt;br&gt;
2. Work at a natural pace.&lt;br&gt;
3. Obsess over quality&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: Several Corroborative Thoughts on Pacing Yourself
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Note to Self, My New Heuristic for Blogging</title><link>https://janusworx.com/personal/note-to-self-my-new-heuristic-for-blogging/</link><pubDate>Wed, 19 Jun 2024 14:43:28 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/note-to-self-my-new-heuristic-for-blogging/</guid><description>&lt;br&gt;


&lt;figure class="mjb-img-center"&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/heuristic-for-blogging.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;Rain lilies, from Abby’s tiny window garden.&lt;br&gt;
They bloom only around this time of the year, on the onset of the monsoon.&lt;br&gt;
Click the pic, for a bigger image&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;I love to write.&lt;br&gt;
Correction, I &lt;em&gt;need&lt;/em&gt; to write.&lt;br&gt;
Writing helps me think, to be deliberate about things, to slow down.&lt;/p&gt;
&lt;p&gt;At the same time, writing is also a slow, plodding process for me. Every post seems to take forever. So many years of doing it and it does not get any easier.&lt;br&gt;
I agonise over what I want to say, the picture or quotes I want to include, the overall arc of my thoughts, the structure, everything has to be just so.&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;br&gt;
I’ve lowered the bar, to build consistency, with my &lt;a href="https://janusworx.com/blog/100-word-writing-habit/" &gt;#100WordHabit&lt;/a&gt; and now I have a new problem. First, I could not get started, and now I cannot stop once I get started.&lt;br&gt;
I just have to finish my thoughts, my post, and that sometimes takes &lt;em&gt;hours&lt;/em&gt;.&lt;br&gt;
Which brings me back to me not wanting to start, for the fear that nothing else (that are in fact, more important) will get done.&lt;/p&gt;
&lt;p&gt;This in turn, brings me to the brainwave I had a couple of days ago, in the bath.&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;br&gt;
The pressure comes from wanting to &lt;em&gt;publish&lt;/em&gt; what I write, the day I write.&lt;br&gt;
What if, I didn’t?&lt;/p&gt;
&lt;p&gt;Nothing has to change. With the exception of a hard stop.&lt;br&gt;
One hour.&lt;br&gt;
One hour to write and publish.&lt;br&gt;
Or one hour to write and then put my pencil down.&lt;br&gt;
And then I can come back to it the next day.&lt;br&gt;
&lt;a href="https://janusworx.com/blog/org-mode-emacs-diary-sexps/" &gt;Yesterday’s post&lt;/a&gt; was the result of this approach.&lt;br&gt;
I wrote it over two days, in two one hour sessions.&lt;br&gt;
Very like Abby’s rain lillies up up above. They &lt;em&gt;are&lt;/em&gt; prepping through the year, to bloom at this time, every time. Just because I cannot see it, does not mean nothing’s happening&lt;/p&gt;
&lt;p&gt;One downside, that I potentially see, is that I will use this as an excuse to slack.&lt;br&gt;
I hope I don’t.&lt;br&gt;
But then on the other hand, without a pressure control valve like this, I can very easily see myself burning out again.&lt;/p&gt;
&lt;p&gt;So let’s see how this goes.&lt;br&gt;
I’m betting on me being a rain lily.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: Note to Self, My New Heuristic for Blogging
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;The end result might not be any good, but my mind needs to be satisfied, that all is to its liking and that I did the best I could&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;Don’t we all?&amp;#160;&lt;a href="#fnref:2" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Need Day of Month Reminders in Org Mode? Emacs Sexp Diary Entries to the Rescue</title><link>https://janusworx.com/personal/org-mode-emacs-diary-sexps/</link><pubDate>Mon, 17 Jun 2024 15:08:40 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/org-mode-emacs-diary-sexps/</guid><description>&lt;p&gt;&lt;br&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/org-mode-diary-floats.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;This is how I imagine diary float entries in Emacs.&lt;br&gt;
Photo courtesy, &lt;a href="https://unsplash.com/@noaheleazar?utm_content=creditCopyText&amp;utm_medium=referral&amp;utm_source=unsplash"&gt;noah eleazar&lt;/a&gt; on &lt;a href="https://unsplash.com/photos/books-on-white-wooden-shelf-9p6R1IDCXNg?utm_content=creditCopyText&amp;utm_medium=referral&amp;utm_source=unsplash"&gt;Unsplash&lt;/a&gt;&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;I finally went ahead and read about what &lt;a href="https://www.gnu.org/software/emacs/manual/html_node/emacs/Sexp-Diary-Entries.html" target="_blank" rel="noreferrer"&gt;Emacs Diary S-expressions&lt;/a&gt; were.&lt;/p&gt;
&lt;p&gt;Going back, a bit.&lt;br&gt;
I make heavy use of Org Mode’s &lt;a href="https://orgmode.org/manual/Deadlines-and-Scheduling.html" target="_blank" rel="noreferrer"&gt;deadline and scheduling&lt;/a&gt; features.&lt;br&gt;
I put schedules and deadlines in lots of tasks across my ten or so org files, so that I can look at them every week, to decide what I’ll be doing this week as well as to review at the beginning of every month.&lt;br&gt;
To wit, there are plenty of tasks that repeat on a weekly and monthly cadence, and Org’s &lt;a href="https://orgmode.org/manual/Repeated-tasks.html" target="_blank" rel="noreferrer"&gt;repeaters&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;But&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;, there’s one kind of event I have, that Org doesn’t support quite well.&lt;br&gt;
If I want something on, let’s say the second Friday of every month, there’s no easy way to describe / do that with Org.&lt;br&gt;
Org defers to Emacs’ native &lt;a href="https://www.gnu.org/software/emacs/manual/html_node/emacs/Diary.html" target="_blank" rel="noreferrer"&gt;Diary Mode&lt;/a&gt; to do something like this.. Ok, not defers, but it supports Diary expression entries with a few caveats.&lt;br&gt;
Now those were scary when I first saw them, which is why I kicked the can down the road, and decided to just live with manually making entries for the second Friday of every month.&lt;br&gt;
A year of doing this, and I’ve finally had enough. So I finally went ahead and read about what &lt;a href="https://www.gnu.org/software/emacs/manual/html_node/emacs/Sexp-Diary-Entries.html" target="_blank" rel="noreferrer"&gt;Emacs Diary S-expressions&lt;/a&gt; were.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;a href="https://janusworx.com/images/2024/org-mode-emacs-diary-floats.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/org-mode-emacs-diary-floats-s.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;Click the pic to see a larger version of the chicken scratch&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;Only to realise, that they were not as scary as I feared, after close to a year of messing around with my Emacs config files. They look&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt; just like Emacs functions with arguments.&lt;/p&gt;
&lt;p&gt;I scribbled one out the way, Org needs them written, by referring to the &lt;a href="https://www.gnu.org/software/emacs/manual/html_node/emacs/Sexp-Diary-Entries.html" target="_blank" rel="noreferrer"&gt;Emacs help&lt;/a&gt;.&lt;/p&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-orgmode" data-lang="orgmode"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&amp;lt;&lt;span class="s"&gt;%%(diary-float t 5 2)&lt;/span&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;I marked the sections out in the scrawly figure above.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;diary-float&lt;/code&gt; seems to be the function that does all the magic and then I have three arguments&lt;/li&gt;
&lt;li&gt;The first one, refers to the month by number. &lt;code&gt;8&lt;/code&gt; will mean August. &lt;code&gt;t&lt;/code&gt; will make things repeat every month.&lt;/li&gt;
&lt;li&gt;The second argument is day of week. &lt;code&gt;0&lt;/code&gt; being Sunday, and &lt;code&gt;6&lt;/code&gt;, Saturday.&lt;/li&gt;
&lt;li&gt;The third one refers to which week of the month. &lt;code&gt;2&lt;/code&gt; in my case, means the second week of the month.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;So …&lt;/p&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-orgmode" data-lang="orgmode"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="gh"&gt;*&lt;/span&gt;&lt;span class="gs"&gt; My super important task&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; DEADLINE: &amp;lt;&lt;span class="s"&gt;%%(diary-float t 3 2)&lt;/span&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;shows up in my agenda as a task for the second Wednesday of every month!&lt;/p&gt;

&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/org-mode-diary-floats-agenda.png" alt="" /&gt;
 
 
 &lt;/figure&gt;
&lt;p&gt;There are a couple of caveats to this approach.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;This is not as task, even though I write it as one. It behaves more like a calendar entry. It more or less, just shows up in the agenda and I have to look at it.&lt;/li&gt;
&lt;li&gt;I can’t mark it as done and expect it to repeat, like a normal Org repeater. If I do that, the task is, uh &lt;em&gt;done&lt;/em&gt; and then that’s that.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Neither of these things bother me, because of the idiosyncratic way I drive my day.&lt;br&gt;
I normally review my daily agenda, and create a day plan for myself.&lt;br&gt;
Which means that I &lt;em&gt;copy&lt;/em&gt; the repeater task into my daily agenda as a single task and mark the repeater as done. So with the weird way I work, writing it out as a diary sexp, actually saves me a step ❤️&lt;br&gt;
And my cranky brain can now heave a sigh of relief.&lt;sup id="fnref:3"&gt;&lt;a href="#fn:3" class="footnote-ref" role="doc-noteref"&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: Need Day of Month Reminders in Org Mode? Emacs Sexp Diary Entries to the Rescue
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;old folks know by now, there’s always a “but” or “however” coming&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;and probably are&amp;#160;&lt;a href="#fnref:2" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:3"&gt;
&lt;p&gt;&lt;a href="https://youtu.be/_mXyXXYXwlQ" target="_blank" rel="noreferrer"&gt;until next time&lt;/a&gt;&amp;#160;&lt;a href="#fnref:3" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Bird on a Wire</title><link>https://janusworx.com/personal/bird-on-a-wire/</link><pubDate>Sat, 15 Jun 2024 16:01:45 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/bird-on-a-wire/</guid><description>&lt;br&gt;

&lt;p&gt;&lt;a href="https://janusworx.com/images/2024/bird-on-a-wire.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/bird-on-a-wire-s.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;Photo courtesy, &lt;a href="https://janusworx.com/blog/god-has-grace-for-fools/" &gt;Abbygail Braganza&lt;/a&gt;, at the &lt;a href="https://www.tripadvisor.co.uk/Attraction_Review-g1532344-d23888355-Reviews-Seawoods_Flamingo_Point-Navi_Mumbai_Maharashtra.html" target="_blank" rel="noreferrer"&gt;Seawoods Flamingo Point&lt;/a&gt;, part of the Navi Mumbai Mudflat Wetlands&lt;br&gt;
Click the pic to see a larger one&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;blockquote&gt;&lt;p&gt;Like a bird on a wire …&lt;/p&gt;
&lt;p&gt;Like a fish on a hook …&lt;/p&gt;
&lt;p&gt;I have tried in my way to be free&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;— Aaron Neville, singing Leon Cohen’s, &lt;em&gt;&lt;a href="https://youtu.be/TKDMiyRmbik" target="_blank" rel="noreferrer"&gt;Bird On A Wire&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: Bird on a Wire
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>The Rest Is Memory</title><link>https://janusworx.com/personal/the-rest-is-memory/</link><pubDate>Fri, 14 Jun 2024 17:01:54 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/the-rest-is-memory/</guid><description>&lt;p&gt;&lt;br&gt;

&lt;a href="https://janusworx.com/images/2024/the-rest-is-memory.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/the-rest-is-memory-s.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;&lt;a href="https://www.psaggu.com/about.html" target="_blank" rel="noreferrer"&gt;Priyanka&lt;/a&gt;, hoping Hedwig will carry her to Hogwarts.&lt;br&gt;
Click the pic for a bigger image&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;blockquote&gt;&lt;p&gt;We look at the world once, in childhood.&lt;br&gt;
The rest is memory.&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;— Louise Glück, &lt;a href="https://www.poeticous.com/louise-gluck/nostos" target="_blank" rel="noreferrer"&gt;Nostos&lt;/a&gt;. &lt;em&gt;(via &lt;a href="https://princessofbookaholics.tumblr.com/post/751915282327584768" target="_blank" rel="noreferrer"&gt;@ashstfu on Tumblr&lt;/a&gt;)&lt;/em&gt;&lt;br&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: The Rest Is Memory
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>How to Stop Time</title><link>https://janusworx.com/personal/how-to-stop-time/</link><pubDate>Thu, 13 Jun 2024 17:36:44 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/how-to-stop-time/</guid><description>&lt;br&gt;

&lt;p&gt;&lt;a href="https://janusworx.com/images/2024/how-to-stop-time.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/how-to-stop-time-s.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;Click the pic to see a larger version&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;blockquote&gt;&lt;p&gt;How to stop time: &lt;strong&gt;kiss.&lt;/strong&gt;&lt;br&gt;
How to travel in time: &lt;strong&gt;read.&lt;/strong&gt;&lt;br&gt;
How to escape time: &lt;strong&gt;music.&lt;/strong&gt;&lt;br&gt;
How to feel time: &lt;strong&gt;write&lt;/strong&gt;.&lt;br&gt;
How to release time: &lt;strong&gt;breathe.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;— Matt Haig, Reasons to Stay Alive &lt;em&gt;(via, &lt;a href="https://www.tumblr.com/melodysbookhaven/751295327427002368/how-to-stop-time-kiss" target="_blank" rel="noreferrer"&gt;@melodybookshaven on tumblr&lt;/a&gt;)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: How to Stop Time
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Be Nobody but Yourself</title><link>https://janusworx.com/personal/be-nobody-but-yourself/</link><pubDate>Wed, 12 Jun 2024 20:22:04 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/be-nobody-but-yourself/</guid><description>&lt;br&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/be-nobody-but-yourself.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;blockquote&gt;&lt;p&gt;A poet is somebody who feels, and who expresses his feelings through words.&lt;/p&gt;
&lt;p&gt;This may sound easy. It isn’t.&lt;/p&gt;
&lt;p&gt;A lot of people think or believe or know they feel — but that’s thinking or believing or knowing; not feeling. And poetry is feeling — not knowing or believing or thinking.&lt;/p&gt;
&lt;p&gt;Almost anybody can learn to think or believe or know, but not a single human being can be taught to feel. Why? Because whenever you think or you believe or you know, you’re a lot of other people: but the moment you feel, you’re nobody-but-yourself.&lt;/p&gt;
&lt;p&gt;To be nobody-but-yourself — in a world which is doing its best, night and day, to make you everybody else — means to fight the hardest battle which any human being can fight; and never stop fighting.&lt;/p&gt;
&lt;/blockquote&gt;&lt;br&gt;

&lt;p&gt;— E.E. Cummings, via &lt;em&gt;&lt;a href="https://www.themarginalian.org/2017/09/25/e-e-cummings-advice/" target="_blank" rel="noreferrer"&gt;The Marginalian&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: Be Nobody but Yourself
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>I Read Like Grandma Does</title><link>https://janusworx.com/personal/i-read-like-grandma-does/</link><pubDate>Sun, 09 Jun 2024 05:45:00 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/i-read-like-grandma-does/</guid><description>&lt;br&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/grandmas-reading-list.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;1943!&lt;/p&gt;
&lt;/figcaption&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Folks who been reading the blog, for a while know about the &lt;a href="https://janusworx.com/reading/" &gt;reading lists&lt;/a&gt;.&lt;br&gt;
I began writing down what I read, just to keep track, ever since I started this incarnation of the blog.&lt;/p&gt;
&lt;p&gt;And then just a few days ago, serendipity led me to that pic above, on Twitter.&lt;br&gt;
User, &lt;a href="https://x.com/_BenMyers_/status/1637933878492172289" target="_blank" rel="noreferrer"&gt;Ben Myers’&lt;/a&gt; grandmother has been doing exactly what I have been doing, &lt;em&gt;&lt;strong&gt;for the past eight decades!&lt;/strong&gt;&lt;/em&gt; &lt;em&gt;(rather, I have been doing what she has 😂)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;This makes me so giddily happy!&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: I Read Like Grandma Does
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Cursive Is Fun</title><link>https://janusworx.com/personal/cursive-is-fun/</link><pubDate>Sat, 08 Jun 2024 14:42:15 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/cursive-is-fun/</guid><description>&lt;p&gt;&lt;br&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/cursive.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;I love it, meaning, I love writing cursive, not someone’s suffering&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;&lt;a href="https://www.tumblr.com/decemberdancer04/122199752644/reblog-this-if-you-had-to-learn-cursive-writing-as?source=share" target="_blank" rel="noreferrer"&gt;Some poor soul on Tumblr&lt;/a&gt;, seems to’ve been traumatised by cursive as a kid.&lt;/p&gt;
&lt;p&gt;While my chicken scrawl is legible only to me mostly, I &lt;em&gt;love&lt;/em&gt; the doing of it. The actual writing. &lt;em&gt;(I do write legibly if someone else has to read it, mostly Abby, Mom or Priyanka&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Peter Morwood, &lt;a href="https://petermorwood.tumblr.com/post/752562181792497664/reblog-this-if-you-had-to-learn-cursive-writing-as" target="_blank" rel="noreferrer"&gt;in his beautiful post&lt;/a&gt;, makes a lovely point as well …&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Also, learning to write cursive meant learning to read cursive (it would have been hard to separate one from the other!) which is a useful skill when looking at historical stuff, and which might prove a problem for future Professional Historians who weren’t taught cursive, so will have to learn it from scratch.&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;The thought that I’ve stumbled into some niche skill by attrition and accident, makes me smile :)&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: Cursive Is Fun
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;&lt;a href="https://janusworx.com/talks/" &gt;Three presentations together&lt;/a&gt; and I still insist on mostly outlining on paper and she’s stuck trying to decipher it 😂&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Doing Devops, Dropping Rust</title><link>https://janusworx.com/work/doing-devops-dropping-rust/</link><pubDate>Fri, 07 Jun 2024 16:37:50 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/doing-devops-dropping-rust/</guid><description>&lt;p&gt;Been struggling to do it all over the past few months.&lt;br&gt;
But no! Life says no :)&lt;/p&gt;
&lt;p&gt;So I’m building some margin into my life.&lt;br&gt;
And the only thing I can talk about work wise, is the familiarity I am trying to gain as part of the career pivot.&lt;br&gt;
The Devops Stuff.&lt;br&gt;
The only thing that is career adjacent to all the stuff I did as a sysadmin and then consultant. So hopefully lots of boring stuff about exciting tech as I try to build new mental models, to fit over old ones.&lt;/p&gt;
&lt;p&gt;Problem though, is what do I write?&lt;br&gt;
I don’t have a good spin on most computer devops stuff. I don’t know what to say.&lt;br&gt;
So for now, they probably will be, just like I point above, boring progress logs.&lt;br&gt;
Mostly consistent, to give me accountability.&lt;br&gt;
And hopefully, I’ll find a voice.&lt;/p&gt;
&lt;p&gt;On the personal front, books, reading, art, language, poetry, photography and other posts will continue. Those are what make my soul sing :)&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: Doing Devops, Dropping Rust
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Note to Self, Linking to a Headline in an Org File</title><link>https://janusworx.com/work/note-to-self-linking-to-a-headline-in-an-org-file/</link><pubDate>Thu, 06 Jun 2024 17:31:37 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/note-to-self-linking-to-a-headline-in-an-org-file/</guid><description>&lt;p&gt;I did one of those periodic, empty your mind sessions today.&lt;br&gt;
Everything is now in a brain dump org file.&lt;br&gt;
And now, like a every good productivity system preaches, I want to review the dump periodically.&lt;br&gt;
There is a task for my miscellenea for e.g. Could I convert it to a link and have it open the file at that precise location?&lt;br&gt;
Turns out Org Mode links let me do just that.&lt;br&gt;
All I need to do, is first &lt;em&gt;“&lt;a href="https://orgmode.org/manual/Handling-Links.html#Handling-Links-1" target="_blank" rel="noreferrer"&gt;store a link&lt;/a&gt;”&lt;/em&gt; in Org parlance. I do that by going to my target file that has the dump (the bottom file in the screenshot), go to the section that I need linking to (in my case, Misc Brain Dump), and hit &lt;code&gt;C-c l&lt;/code&gt;&lt;/p&gt;

&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/org-links-1.png" alt="" /&gt;
 
 
 &lt;/figure&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;After which I go to the file which needs to contain my link, and select my text that I’ll want converted into a link (&lt;em&gt;“&lt;a href="https://orgmode.org/manual/Handling-Links.html#index-C_002dc-C_002dl" target="_blank" rel="noreferrer"&gt;inserting a link&lt;/a&gt;”&lt;/em&gt; in org speak. In my case, the top file in the screenshot below).&lt;br&gt;
I select the Misc Brain Dump part of the “Look at the Misc Brain Dump” task and hit&lt;br&gt;
&lt;code&gt;C-c C-l&lt;/code&gt;&lt;br&gt;
It then switches me to a buffer that shows the links that Org currently has stored, with the minibuffer prompting me to choose one&lt;/p&gt;

&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/org-links-2.png" alt="" /&gt;
 
 
 &lt;/figure&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;I use the arrow keys to choose the one I want, hit return and it creates the link for me.&lt;/p&gt;

&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/org-links-3.png" alt="" /&gt;
 
 
 &lt;/figure&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;Here, I’ve switched away from my brain dump. (I’ve closed the file in fact)&lt;/p&gt;

&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/org-links-4.png" alt="" /&gt;
 
 
 &lt;/figure&gt;
&lt;p&gt;I click the link in my tasks file and …&lt;/p&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;It opens right up, at the exact location I want. Woohoo!&lt;/p&gt;

&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/org-links-5.png" alt="" /&gt;
 
 
 &lt;/figure&gt;
&lt;p&gt;And just like everything else with Org, it’s plain, simple, elegant, text functionality.&lt;br&gt;
I examined the link and it was a borg standard Org link, with the link having the header tacked on the end, like so …&lt;br&gt;
&lt;code&gt;file:brain-dump.org::*Misc Brain Dump&lt;/code&gt;&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: Note to Self, Linking to a Headline in an Org File
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;which should have been evident when I chose the link to insert, but I only saw it and went Aha! much later 😂&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>What I’d Do for You</title><link>https://janusworx.com/personal/what-id-do-for-you/</link><pubDate>Wed, 05 Jun 2024 17:08:36 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/what-id-do-for-you/</guid><description>&lt;br&gt;

&lt;p&gt;&lt;a href="https://janusworx.com/images/2024/flower-what-id-do-for-you.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/flower-what-id-do-for-you-s.jpg" alt="Moss rose in a pot hanging from my window" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;Click for a larger pic&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;this morning&lt;br&gt;
i told the flowers&lt;br&gt;
what i’d do for you&lt;br&gt;
and they blossomed&lt;/p&gt;
&lt;p&gt;&lt;em&gt;— Rupi Kaur, The Sun and Her Flowers&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: What I’d Do for You
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Moved My Music Library From Jellyfin to Emby Today</title><link>https://janusworx.com/work/moved-my-music-library-from-jellyfin-to-emby-today/</link><pubDate>Tue, 04 Jun 2024 10:47:23 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/moved-my-music-library-from-jellyfin-to-emby-today/</guid><description>&lt;p&gt;I had moved off Plex, close to two years ago, because … reasons.&lt;br&gt;
Unable to decide between Emby and Jellyfin and having just learned containers at the time, I deployed both on my Pi.&lt;br&gt;
Emby handled video duties while Jellyfin did music.&lt;/p&gt;
&lt;p&gt;And now after close to two years, I’m moving off Jellyfin to Emby.&lt;br&gt;
The only reason being its iOS client.&lt;br&gt;
It still has a lot of growing up to do, and I’ve reached the end of my tether trying to adjust to its foibles.&lt;br&gt;
I cannot turn the phone off, else the music goes off.&lt;br&gt;
I cannot switch away from the Jellyfin app, else the music goes off.&lt;br&gt;
If I get a call, then the app sorta-kinda loses its mind and I have to kill it and relaunch it.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;All&lt;/strong&gt;&lt;/em&gt; I want from my music player is to be a good audio citizen on iOS. Connect to the server, read my songs, play my music. And do it in the background.&lt;/p&gt;
&lt;p&gt;While I am sympathetic to the priorities of the open source Jellyfin team, I am not getting any younger and my hour long walks are the only time I get to enjoy my music.&lt;/p&gt;
&lt;p&gt;So … I moved.&lt;/p&gt;

&lt;h3 class="relative group"&gt;Setting the stage
 &lt;div id="setting-the-stage" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#setting-the-stage" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;There had to be &lt;em&gt;two&lt;/em&gt; instances of Emby running. I don’t want my video online and so I don’t want it exposed&lt;/li&gt;
&lt;li&gt;Video is secondary anyway. So that had to be the second container. The main one is Music.&lt;/li&gt;
&lt;li&gt;Music needs to be accessible from anywhere on the web.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 class="relative group"&gt;Doing it
 &lt;div id="doing-it" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#doing-it" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;I already had docker running and installed, along with Nginx&lt;/li&gt;
&lt;li&gt;Jellyfin has better documentation. So I used &lt;a href="https://jellyfin.org/docs/general/networking/nginx/" target="_blank" rel="noreferrer"&gt;their guide&lt;/a&gt; to reverse proxy Nginx to the Emby service that would come up. All I had to do, was put in my SSL cert paths correctly and change the variable &lt;code&gt;jellyfin&lt;/code&gt; to &lt;code&gt;embymusicserver&lt;/code&gt; (along with the rest of the require settings.)&lt;/li&gt;
&lt;li&gt;I created a folder to hold Emby’s &lt;a href="https://hub.docker.com/r/emby/embyserver/" target="_blank" rel="noreferrer"&gt;&lt;code&gt;docker compose&lt;/code&gt;&lt;/a&gt; file. I modified the container name to &lt;code&gt;embymusicserver&lt;/code&gt; and gave the path to mount for its config and another one that pointed to my music folder. Pretty straightforward. (I had already changed the ports earlier on the video emby instance to 8097 &amp;amp; 8921 to avoid conflicts with Jellyfin, so I did not have to touch that.)&lt;/li&gt;
&lt;li&gt;Assigned ownership recursively to the user that would run the container.&lt;/li&gt;
&lt;li&gt;Did a &lt;code&gt;docker compose up&lt;/code&gt; to see if everything came up ok. And then tore it down&lt;/li&gt;
&lt;li&gt;And finally, once again, adapted my &lt;a href="https://jellyfin.org/docs/general/installation/container#using-docker-compose" target="_blank" rel="noreferrer"&gt;old Jellyfin systemd script&lt;/a&gt; to ensure I could have it start and stop with the system&lt;/li&gt;
&lt;/ul&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/emby-1.png" alt="" /&gt;
 
 
 &lt;/figure&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/emby-2.png" alt="" /&gt;
 
 
 &lt;/figure&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;In hindsight, there was no way to pull all of this off in an hour, if it wasn’t for Docker and Emby’s image. Now I realise why containers are taking over the world.&lt;/p&gt;
&lt;p&gt;And thank you for all you do, Jellyfin. I shall return as soon as the app gets more useful.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: Moved My Music Library From Jellyfin to Emby Today
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Assigning Keyboard Shortcuts to Nemo Actions</title><link>https://janusworx.com/work/assigning-keyboard-shortcuts-to-nemo-actions/</link><pubDate>Mon, 03 Jun 2024 17:08:35 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/assigning-keyboard-shortcuts-to-nemo-actions/</guid><description>&lt;p&gt;Everytime I download a &lt;a href="https://www.humblebundle.com/books/dynamite-20th-anniversary-20000page-mega-bundle-books" target="_blank" rel="noreferrer"&gt;Humble Bundle&lt;/a&gt;, I’m left with a ton of books, in various formats on my desktop.&lt;br&gt;
I normally like all the formats for a single title to be in a single folder, so that Calibre can then treat them as a single book&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;, when adding them.&lt;/p&gt;
&lt;p&gt;I’ve been using Pedro Santana’s, &lt;a href="https://github.com/pedro-augusto-santana/nemo_create_new_folder_with_selection" target="_blank" rel="noreferrer"&gt;nifty little Nemo action&lt;/a&gt; to help me do just this.&lt;br&gt;
Once installed, all I need to do is select my files, right click on them and then create a new folder, like so …

&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/nemo-action-1.png" alt="nemo cinnamon screenshot with no pointer in the context command" /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;p&gt;The one remaining wrinkle, being that when you’re completely keyboard driven, you still need to come down a couple of steps with the arrow keys or switch to the mouse.&lt;br&gt;
When doing this with close to 250+ files, this quickly gets tedious.&lt;br&gt;
&lt;a href="https://stackoverflow.com/a/42786928" target="_blank" rel="noreferrer"&gt;Stack Overflow to the rescue&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Turns out that all I needed to do was add an &lt;code&gt;_&lt;/code&gt; in front of the letter, I wanted to use to activate my little action from the context menu.&lt;br&gt;
My original action went …&lt;/p&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-toml" data-lang="toml"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;Nemo&lt;/span&gt; &lt;span class="nx"&gt;Action&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nx"&gt;Active&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nx"&gt;Name&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="nx"&gt;Create&lt;/span&gt; &lt;span class="nx"&gt;new&lt;/span&gt; &lt;span class="nx"&gt;folder&lt;/span&gt; &lt;span class="nx"&gt;with&lt;/span&gt; &lt;span class="nx"&gt;selection&lt;/span&gt; 
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;...&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;I decided to use the &lt;em&gt;n&lt;/em&gt; in &lt;em&gt;selection&lt;/em&gt;. &lt;em&gt;&lt;strong&gt;N&lt;/strong&gt;&lt;/em&gt; for &lt;em&gt;new folder&lt;/em&gt;. Easy to remember! So with this tiny change …&lt;/p&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-TOML" data-lang="TOML"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nx"&gt;Name&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="nx"&gt;Create&lt;/span&gt; &lt;span class="nx"&gt;new&lt;/span&gt; &lt;span class="nx"&gt;folder&lt;/span&gt; &lt;span class="nx"&gt;with&lt;/span&gt; &lt;span class="nx"&gt;selectio_n&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;I get to do this!&lt;/p&gt;

&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/nemo-action-2.png" alt="nemo cinnamon screenshot that lets me use a custom key in the context command" /&gt;
 
 
 &lt;/figure&gt;
&lt;p&gt;I can select, get the context menu, hit n, type in the folder name and done!&lt;br&gt;
It’s still a lot of work when there’s lots of files, but there’s a seamless flow to the entire process.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: Assigning Keyboard Shortcuts to Nemo Actions
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;&lt;a href="https://manual.calibre-ebook.com/gui.html#add-books" target="_blank" rel="noreferrer"&gt;point two, in this section of the documentation&lt;/a&gt;&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Notes to Self on Renewing Wildcard Letsencrypt Certs Manually With Lego</title><link>https://janusworx.com/work/notes-to-self-on-renewing-wildcard-letsencrypt-certs-manually-with-lego/</link><pubDate>Fri, 31 May 2024 11:12:17 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/notes-to-self-on-renewing-wildcard-letsencrypt-certs-manually-with-lego/</guid><description>&lt;p&gt;&lt;br&gt;
&lt;br&gt;

&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/lego-logo.svg" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;image courtesy, the &lt;a href="https://github.com/go-acme/lego" target="_blank" rel="noreferrer"&gt;Lego Github page&lt;/a&gt;&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;I want to someday, automate all my domain certificate renewals.&lt;br&gt;
Namecheap doesn’t support it, ergo my move to &lt;a href="https://porkbun.com/about" target="_blank" rel="noreferrer"&gt;Porkbun&lt;/a&gt;.&lt;br&gt;
And &lt;code&gt;certbot&lt;/code&gt; doesn’t support Porkbun, so I’ve moved to &lt;a href="https://github.com/go-acme/lego" target="_blank" rel="noreferrer"&gt;Lego&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I still need to someday figure out how to do this automatically, but for now, since all is in place, this is the new manual process.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;You’ll need to generate a Porkbun API key along with its associated secret, and store it somewhere safe and secure. (This is a one time thing, the &lt;a href="https://kb.porkbun.com/article/190-getting-started-with-the-porkbun-api" target="_blank" rel="noreferrer"&gt;Generating API keys&lt;/a&gt; section here describes how)&lt;/li&gt;
&lt;li&gt;Another one time step is to &lt;a href="https://go-acme.github.io/lego/installation/" target="_blank" rel="noreferrer"&gt;get Lego installed&lt;/a&gt; and have it &lt;a href="https://go-acme.github.io/lego/dns/porkbun/" target="_blank" rel="noreferrer"&gt;generate your certs&lt;/a&gt;,
and then have your applications, point to where they are.&lt;/li&gt;
&lt;li&gt;Command to renew: &lt;code&gt;PORKBUN_SECRET_API_KEY=&amp;quot;your-api-*secret*&amp;quot; PORKBUN_API_KEY=&amp;quot;your-porkbun-api-key&amp;quot; ./lego --domains your-domain.tld --domains *.domain.tld --email your-email@domain --dns porkbun renew&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;And the renewal’s done!&lt;/li&gt;
&lt;li&gt;Restart yer engines … err your applications&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt; et voilà!&lt;/li&gt;
&lt;li&gt;If you have multiple machines, figure out a way to securely transfer the certs there too.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: Notes to Self on Renewing Wildcard Letsencrypt Certs Manually With Lego
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;in my case Nginx&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Using Hugo Variables to Help With Mailto Links in Hugo</title><link>https://janusworx.com/work/using-hugo-variables-to-help-with-mailto-links-in-hugo/</link><pubDate>Thu, 30 May 2024 18:17:35 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/using-hugo-variables-to-help-with-mailto-links-in-hugo/</guid><description>&lt;p&gt;The feedback email address seems to be getting traction and I’m getting more mail every week.&lt;/p&gt;
&lt;p&gt;I wanted to make it easier on myself and for the kind folks who write in, by including the title of the post in the subject of the email.&lt;br&gt;
Right now, every one tells me what post they are talking about, which as I said in exceedingly kind of the folks who write in. My posts seem to be reaching really considerate people :)&lt;/p&gt;
&lt;p&gt;So a teensy bit of head-scratching later, I remembered I use shortcodes to inject custom HTML into my pages. I remembered Hugo has variables I could access. And I remembered &lt;code&gt;mailto&lt;/code&gt; links let me add a subject parameter to the link.&lt;/p&gt;
&lt;p&gt;So, 1+2+3=Sucess! (Or so I hoped)&lt;/p&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;


&lt;h3 class="relative group"&gt;The How
 &lt;div id="the-how" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#the-how" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;I looked up the variable, I needed to get at the post’s title. It’s called &lt;code&gt;.Page.Title&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;I created a &lt;code&gt;hpt.html&lt;/code&gt; in my Hugo’s &lt;code&gt;layouts/shortcodes&lt;/code&gt; directory to hold the little snippet that’d get typed in the email’s subject field. This is all it contains:&lt;br&gt;
&lt;code&gt;Feedback on post: {{ .Page.Title }}&lt;/code&gt;&lt;br&gt;
Hugo will grab this snippet whenever it runs and put in the post’s title in place of the placeholder.&lt;/li&gt;
&lt;li&gt;And then I can use that in a &lt;code&gt;mailto&lt;/code&gt; link like so, &lt;code&gt;[feedback at this domain](dummyemail@dummydomain.local?subject=&amp;quot;{{&amp;lt; hpt &amp;gt;}}&amp;quot;)&lt;/code&gt;&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;And tada! 1+2+3 does indeed equal success! You can see in action, by clicking on the link below to send me feedback 🙂&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: Using Hugo Variables to Help With Mailto Links in Hugo
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;This is a markdown formatted link. You can ofcourse use HTML&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>My Experience With the Kinesis Advantage 360 After a Day of Use</title><link>https://janusworx.com/work/kinesis-advantage-360/</link><pubDate>Wed, 29 May 2024 20:02:51 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/kinesis-advantage-360/</guid><description>&lt;p&gt;&lt;em&gt;&lt;strong&gt;&lt;a href="https://janusworx.com/work/kinesis-advantage-360/#updates" &gt;Updates&lt;/a&gt;&lt;/strong&gt;&lt;/em&gt; &lt;em&gt;&lt;strong&gt;:&lt;/strong&gt;&lt;/em&gt; &lt;em&gt;I’ll update this post periodically as I get more familiar with the keyboard&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;br&gt;

&lt;a href="https://janusworx.com/images/2024/kinesis-advantage-360.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/kinesis-advantage-360s.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;I find the curvy, ungainly shape really beautiful. Click to enlarge&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;If you follow me on the fediverse, you’ve already read most of this.&lt;/p&gt;
&lt;p&gt;Long story short, my wrists (and now, my elbows and arms) are killing me.&lt;br&gt;
So, I saved up and got me a new, split, ergonomic keyboard: &lt;a href="https://kinesis-ergo.com/shop/adv360/" target="_blank" rel="noreferrer"&gt;The Kinesis Advantage 360&lt;/a&gt;&lt;br&gt;
It’s available in the US at around 500USD. I paid close to twice that to import it home, to India (via a seller on the Amazon India site)&lt;br&gt;
Lots of bullet points after a day of use.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;All of its ergonomic and software power is QWERTY first and Windows/Mac first. A Dvorak, Linux user like me, will need to adjust quite a bit&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;Everything’s slowed to a crawl as I get used to the new key placements.&lt;/li&gt;
&lt;li&gt;The Dvorak layout seems to work better on this than on my old keyboard&lt;/li&gt;
&lt;li&gt;The key layout and spacing is throwing everything off&lt;/li&gt;
&lt;li&gt;Realised some of my keyboard shortcuts were that way, because of the old keyboard layout. They are terrible on the new keyboard. Need to find new shortcuts for ulauncher, minimising windows, and the gpaste clipboard manager&lt;/li&gt;
&lt;li&gt;My caps lock is the compose key and i need to see if the new position will help or hinder me&lt;/li&gt;
&lt;li&gt;totally gotten used to the new space, return and backspace keys&lt;/li&gt;
&lt;li&gt;totally not used to the placement of esc. will try a week to see if i can get used to it.&lt;/li&gt;
&lt;li&gt;new ways of chording keys in emacs. seem to be easier on the wrists. (because of the new place for the ctrl and alt keys)&lt;/li&gt;
&lt;li&gt;my wrists feel much better. no idea how much of this is placebo. will know for sure only after a while&lt;/li&gt;
&lt;li&gt;bottom row keys are tough right now&lt;/li&gt;
&lt;li&gt;got used to the compose key&lt;/li&gt;
&lt;li&gt;the question mark and slash has moved below and to the right (dvorak), so will need to see if i adjust&lt;/li&gt;
&lt;li&gt;i miss my numpad so much!&lt;/li&gt;
&lt;li&gt;learned how to mount the onboard flash storage and eject it properly&lt;/li&gt;
&lt;li&gt;updated firmware to the latest version.&lt;/li&gt;
&lt;li&gt;also note to self, switch to querty before you do this. status reports are typed out wonky other wise&lt;/li&gt;
&lt;li&gt;I have brown switches&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The one thing I confidently say, even after a single day of use, is that this is a lovely keyboard.&lt;br&gt;
I will get used to all its quirks, because the scalloped, split design suits me really well.&lt;br&gt;
Most of it, is just changing muscle memory, not learning new painful maneuvers.&lt;br&gt;
And the design also ensures, &lt;em&gt;every single key&lt;/em&gt; is in reach of my fingers. This is the magical part for me.&lt;br&gt;
If it lasts me five years, I’ll consider it money well spent.&lt;/p&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;


&lt;h2 class="relative group"&gt;Updates
 &lt;div id="updates" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#updates" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;

&lt;h3 class="relative group"&gt;2024-07-02
 &lt;div id="2024-07-02" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#2024-07-02" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;p&gt;Gotten used to the layout for the most part. The arrow keys are still very troublesome and trip me up all the time. Realise how deep muscle memory actually is.&lt;br&gt;
The only reason I don’t want to change them, is that they (the new keys) are easy on my fingers and when I’m intentional about them, are easy to use.&lt;br&gt;
The Compose key and the &lt;code&gt;:&lt;/code&gt; keys will still take a while getting used to.&lt;br&gt;
Have gotten the hang of /, ?, = and + though.&lt;br&gt;
Have gotten back to my old speed. My error rate is still &lt;em&gt;really&lt;/em&gt; high. Most of my friends have now gotten used to my typos 😂&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;?subject=%22Feedback on post: My Experience With the Kinesis Advantage 360 After a Day of Use
%22" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;for e.g., the [ key finds itself at the top right, while the ] key finds itself top left 😂&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Ignoring Syncthing Conflict Files in the Org Agenda Folder</title><link>https://janusworx.com/work/ignoring-syncthing-conflict-files-in-org-agenda-folder/</link><pubDate>Sun, 26 May 2024 16:03:01 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/ignoring-syncthing-conflict-files-in-org-agenda-folder/</guid><description>&lt;p&gt;Now that I have &lt;a href="https://janusworx.com/blog/org-mode-clocking-in-and-out-of-tasks-on-task-state-changes/" &gt;the power of large language models&lt;/a&gt;, in the palm of my hand …&lt;br&gt;
&lt;br&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/he-man-i-have-the-power.gif" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;You just had to be there, to really appreciate this 😂&lt;br&gt;
Image, courtesy user &lt;a href="https://makeagif.com/i/Mz4AjF" target="_blank" rel="noreferrer"&gt;straiven on makeagif&lt;/a&gt;&lt;/p&gt;
&lt;/figcaption&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

I decided to see, if it could help me solve one of my real pain points with Org Mode.&lt;br&gt;
I had asked for help &lt;a href="https://toots.dgplug.org/@jason/112483224007964606" target="_blank" rel="noreferrer"&gt;over on the fediverse&lt;/a&gt;, after months of trial and error, on just how to fix this.&lt;br&gt;
The issue being, I needed a way to tell my Org Agenda, to ignore files with a certain pattern.&lt;/p&gt;
&lt;p&gt;I have a folder (called &lt;code&gt;syncbox&lt;/code&gt;) full of files, that Org Mode looks at to generate the agenda for me.&lt;br&gt;
Now these files are also synced via &lt;a href="https://syncthing.net/" target="_blank" rel="noreferrer"&gt;Syncthing&lt;/a&gt; over to my phone, where another program called &lt;a href="https://www.beorgapp.com/" target="_blank" rel="noreferrer"&gt;Beorg&lt;/a&gt; looks at them too and shows them as entries in my calendar, so that I don’t miss the really important things I need to do.&lt;/p&gt;
&lt;p&gt;Functionally, all is well with this setup, except for one teensy thing.&lt;br&gt;
Every once in a while, when certain files are in use on both, my desktop and my phone, Syncthing will create conflicting copies of said files in use.&lt;br&gt;
This happens most often, with my &lt;code&gt;tasks.org&lt;/code&gt; file.&lt;br&gt;
Once it conflicts, my &lt;code&gt;syncbox&lt;/code&gt; gets full with files like,&lt;br&gt;
&lt;code&gt;tasks.sync-conflict-20240408-041556-2TQWENY.org&lt;/code&gt; and&lt;br&gt;
&lt;code&gt;tasks.sync-conflict-20240516-101335-2TQWENY.org&lt;/code&gt; and&lt;br&gt;
&lt;code&gt;tasks.sync-conflict-20240520-053451-2TQWENY.org&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;What happens &lt;em&gt;then,&lt;/em&gt; is that Org Agenda happily reads those files too, and I end up with lots of duplicated tasks.&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;As usual, tackling it by writing lisp, was an idea fraught with terror for me. I tried quite a bit and failed.&lt;br&gt;
My next plan of attack was that Org Agenda had a regex&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt;, that it would process. My regex is better than my lisp, but even that was to no avail.&lt;br&gt;
Emacs regex does not support lookaheads / lookbehinds and I did not want to have some complicated pattern, that even I would not recognise, a few months down the line.&lt;br&gt;
In the meanwhile, Ihor told me to stop faffing about and &lt;a href="https://emacs.ch/@yantar92/112484511603174787" target="_blank" rel="noreferrer"&gt;just write&lt;/a&gt; a function&lt;sup id="fnref:3"&gt;&lt;a href="#fn:3" class="footnote-ref" role="doc-noteref"&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;So I asked Claude to go do the work for me and I ended up with …&lt;/p&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-emacs-lisp" data-lang="emacs-lisp"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;defun&lt;/span&gt; &lt;span class="nv"&gt;mjb/set-org-agenda-files-from-syncbox-directory&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="s"&gt;&amp;#34;Set &lt;/span&gt;&lt;span class="ss"&gt;`org-agenda-files&amp;#39;&lt;/span&gt;&lt;span class="s"&gt; to all Org files in the &amp;#39;syncbox&amp;#39; directory, excluding files with &amp;#39;.sync-conflict&amp;#39; in the name.&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;let&lt;/span&gt; &lt;span class="p"&gt;((&lt;/span&gt;&lt;span class="nv"&gt;syncbox-dir&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;expand-file-name&lt;/span&gt; &lt;span class="s"&gt;&amp;#34;syncbox&amp;#34;&lt;/span&gt; &lt;span class="nv"&gt;my-org-directory&lt;/span&gt;&lt;span class="p"&gt;)))&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;when&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;file-directory-p&lt;/span&gt; &lt;span class="nv"&gt;syncbox-dir&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;setq&lt;/span&gt; &lt;span class="nv"&gt;org-agenda-files&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;mapcar&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;lambda&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;file&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;expand-file-name&lt;/span&gt; &lt;span class="nv"&gt;file&lt;/span&gt; &lt;span class="nv"&gt;syncbox-dir&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;seq-filter&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;lambda&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;file&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;not&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;string-match-p&lt;/span&gt; &lt;span class="s"&gt;&amp;#34;\\.sync-conflict&amp;#34;&lt;/span&gt; &lt;span class="nv"&gt;file&lt;/span&gt;&lt;span class="p"&gt;)))&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;directory-files&lt;/span&gt; &lt;span class="nv"&gt;syncbox-dir&lt;/span&gt; &lt;span class="no"&gt;t&lt;/span&gt; &lt;span class="s"&gt;&amp;#34;\.org$&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;)))))))&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;mjb/set-org-agenda-files-from-syncbox-directory&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;which I dutifully dumped into my &lt;code&gt;init&lt;/code&gt; file.&lt;br&gt;
And that did the trick!&lt;/p&gt;
&lt;p&gt;What did strike me, is that now that I am using this approach, my chicken and egg struggle is finally at an end. I don’t have to struggle to learn lisp to hack emacs which needs me to learn lisp.&lt;br&gt;
I realise it takes only a short time of dedicated effort. But right now, it is time I don’t have, and don’t know when I’ll get.&lt;br&gt;
So the new fangled LLM AIs can help me sort my Emacs pain points and I can learn Lisp at leisure.&lt;br&gt;
And I’ll use, &lt;a href="https://framapiaf.org/@vindarel" target="_blank" rel="noreferrer"&gt;friend on the fediverse&lt;/a&gt;, Vincent Dardel’s &lt;a href="https://www.udemy.com/course/common-lisp-programming/?couponCode=NVDPRODIN35" target="_blank" rel="noreferrer"&gt;excellent course to do just that&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;It drove me nuts in the beginning, when I did not know what was happening. I was like, I /just/ finished this task. And it’s popping up again?! Is my computer haunted?&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;defined in &lt;code&gt;org-agenda-file-regexp&lt;/code&gt; with a default value of &lt;code&gt;&amp;quot;\\`[^.].*\\.org\\'&amp;quot;&lt;/code&gt;&amp;#160;&lt;a href="#fnref:2" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:3"&gt;
&lt;p&gt;He did not quite put it that way. He was much kinder, obviously :)&amp;#160;&lt;a href="#fnref:3" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Search for Something! Kill the Line! In Emacs</title><link>https://janusworx.com/personal/search-for-something-kill-the-line-in-emacs/</link><pubDate>Sat, 25 May 2024 10:19:21 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/search-for-something-kill-the-line-in-emacs/</guid><description>&lt;p&gt;So I bought myself comics. And I was naively trying to count how many I got.&lt;br&gt;
And I went aha! I’ll paste the lines into Emacs and the lines numbers will tell me :)
So I just selected stuff off the web and put it in and …&lt;/p&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-text" data-lang="text"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Sheena: Queen of the Jungle, Vol. 2
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Dynamite Entertainment
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;CBZ
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;185.4 MB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;EPUB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;105.4 MB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;PDF
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;439.9 MB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Queen Sonja - Issue. #2
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Dynamite Entertainment
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;CBZ
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;17.7 MB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;EPUB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;16.6 MB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;PDF
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;137.2 MB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Vampirella: Throne of Skulls Vol 03
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Dynamite Entertainment
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;CBZ
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;229.3 MB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;EPUB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;135.9 MB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;PDF
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;438.6 MB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Red Sonja and the Ballad of the Red Goddess
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Dynamite Entertainment
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;CBZ
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;132.9 MB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;EPUB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;50.2 MB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;PDF
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;376.8 MB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Vampirella Strikes Vol 01
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Dynamite Entertainment
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;CBZ
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;106.4 MB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;EPUB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;118.7 MB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;PDF
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;351.7 MB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;… really long list elided&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;And I go, Ugh! It’s Saturday! I’m too lazy to go selecting and deleting that cruft between my titles. Isn’t there something in Emacs that can help?&lt;br&gt;
Spoiler Alert: Of course there is! Meet &lt;a href="https://www.gnu.org/software/emacs/manual/html_node/emacs/Other-Repeating-Search.html#index-flush_002dlines" target="_blank" rel="noreferrer"&gt;&lt;code&gt;flush-lines&lt;/code&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;M-x flush-lines&lt;/code&gt; asks me for a regex pattern.&lt;br&gt;
I gave it &lt;code&gt;\ MB&lt;/code&gt;&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt; et voilà! Every line that had a space followed by &lt;code&gt;MB&lt;/code&gt; disappeared!&lt;/p&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-text" data-lang="text"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Sheena: Queen of the Jungle, Vol. 2
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Dynamite Entertainment
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;CBZ
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;EPUB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;PDF
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Queen Sonja - Issue. #2
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Dynamite Entertainment
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;CBZ
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;EPUB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;PDF
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Vampirella: Throne of Skulls Vol 03
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Dynamite Entertainment
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;CBZ
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;EPUB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;PDF
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Red Sonja and the Ballad of the Red Goddess
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Dynamite Entertainment
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;CBZ
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;EPUB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;PDF
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Vampirella Strikes Vol 01
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Dynamite Entertainment
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;CBZ
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;EPUB
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;PDF
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;… long list elided&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;And so a few, rapid commands to excise lines with &lt;code&gt;Dynamite Entertainment&lt;/code&gt;, &lt;code&gt;CBZ&lt;/code&gt;, &lt;code&gt;EPUB&lt;/code&gt; and &lt;code&gt;PDF&lt;/code&gt; later …&lt;/p&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-text" data-lang="text"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Sheena: Queen of the Jungle, Vol. 2
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Queen Sonja - Issue. #2
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Vampirella: Throne of Skulls Vol 03
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Red Sonja and the Ballad of the Red Goddess
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Vampirella Strikes Vol 01
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;… still a long list, but exactly what I wanted :)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;I love you, Emacs!&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;the &lt;code&gt;\&lt;/code&gt; followed by a space is just to demonstrate here that I put in a space. I just naively typed a space followed by MB, actually&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Why I Write</title><link>https://janusworx.com/personal/why-i-write/</link><pubDate>Fri, 24 May 2024 20:53:48 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/why-i-write/</guid><description>&lt;p&gt;&lt;a href="https://janusworx.com/images/2024/why-i-write-IMG_3778.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/why-i-write-IMG_3778s.jpg" alt="page of my illegible scrawl" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;Click to see a larger version, just as illegible&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;As I struggle to write, sometimes I wonder why I even do it.&lt;br&gt;
And when I don’t, I then get this strange uncontrollable urge to write something, anything.&lt;br&gt;
Damned if you do, damned if you don’t.&lt;/p&gt;
&lt;p&gt;And now in addition to that crazy struggle, I’ve caught myself getting upset of late. All because nobody “shares” the posts I put out.&lt;br&gt;
And I worry if anyone even reads my stuff?&lt;br&gt;
And do they like it?&lt;br&gt;
And if they do, why would they not share it?&lt;br&gt;
Not good enough?&lt;br&gt;
Should I be doing more?&lt;br&gt;
Write better?&lt;/p&gt;
&lt;p&gt;All of which came to a head today.&lt;br&gt;
And after a bit of laughing at my silliness, I decided to write down what I tell myself every year.&lt;/p&gt;
&lt;p&gt;Because I do write.&lt;br&gt;
Whether anyone reads it. Or not.&lt;br&gt;
Which is why I wonder why I get trapped in this weird neurotic spider web every year.&lt;br&gt;
I’m done comparing, in the words of Lamott, my insides to their outsides.&lt;/p&gt;
&lt;p&gt;So a few thoughts to myself on why I do it. A non exhaustive list …&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I love to read.&lt;/li&gt;
&lt;li&gt;I love to write.&lt;/li&gt;
&lt;li&gt;I write primarily for myself. First and foremost.&lt;/li&gt;
&lt;li&gt;I write because I cannot help it.&lt;/li&gt;
&lt;li&gt;I write because I cannot not write.&lt;/li&gt;
&lt;li&gt;I write to document things and thingamajigs and doodads and small things and big things. Because I forget. And writing helps me remember. And then it helps other people learn. And then they teach me new things. And I learn more. And I write more. And the whole virtuous cycle repeats.&lt;/li&gt;
&lt;li&gt;I write because everything in me, has got to come out on the page, so that there is space within me, to then function.&lt;/li&gt;
&lt;li&gt;I write because then everything slows down to the pace of my fingers rather than the crazy light speed dizziness within my brain.&lt;/li&gt;
&lt;li&gt;I write because I can then think.&lt;/li&gt;
&lt;li&gt;I write because it sharpens my focus.&lt;/li&gt;
&lt;li&gt;I write because it makes it easy to forget.&lt;/li&gt;
&lt;li&gt;I write because I read what I write. Even if no one else does. Even if no one else wants to. Even if no one else can. And I love my past selves, who’ve scribbled their thoughts and feelings to protect me, shield me, guide me and give me comfort, solace and love.&lt;/li&gt;
&lt;li&gt;I write because then, my heart then aches a little bit less.&lt;/li&gt;
&lt;li&gt;I write because it’s brought me back from the edge of the void. Twice.&lt;/li&gt;
&lt;li&gt;I write because it helps me be resilient. Persistent. To quote Taleb, &lt;em&gt;&lt;strong&gt;Antifragile.&lt;/strong&gt;&lt;/em&gt; And to quote Angelou, &lt;em&gt;&lt;strong&gt;“You may trod me in the very dirt / But still, like dust, I rise.”&lt;/strong&gt;&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;I write because I have scars. And writing lessens the hurt. To quote Bareilles, &lt;em&gt;&lt;strong&gt;it helps me hold on, till there’s something else to hold on to.&lt;/strong&gt;&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;I write because …&lt;/li&gt;
&lt;li&gt;I write because today I realise, that’s who I am.&lt;br&gt;
I am a writer, because that’s what I do. I write.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Org Mode Clocking in and Out of Tasks on Task State Changes</title><link>https://janusworx.com/work/org-mode-clocking-in-and-out-of-tasks-on-task-state-changes/</link><pubDate>Thu, 23 May 2024 19:03:13 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/org-mode-clocking-in-and-out-of-tasks-on-task-state-changes/</guid><description>
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/org-mode-unicorn.svg" alt="" /&gt;
 
 
 &lt;/figure&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;Logo courtesy, the &lt;a href="https://orgmode.org/" target="_blank" rel="noreferrer"&gt;Org Mode Website&lt;/a&gt;&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;Lisp is on the list of things to learn someday.&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;br&gt;
And in the meanwhile, I need to be able to hack Emacs to do the stuff I want.&lt;br&gt;
But also, there are a ton of other things, that are currently much, much higher on my list of priorities.&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;br&gt;
And while the community is &lt;em&gt;&lt;strong&gt;extremely&lt;/strong&gt;&lt;/em&gt; kind and generous, the expectation is that you need to put in the time and the work.&lt;br&gt;
Which I currently don’t have and can’t do.&lt;/p&gt;
&lt;p&gt;And so, it finally happened.&lt;br&gt;
I signed up for a Claude account and told it to write me some lisp.&lt;/p&gt;
&lt;p&gt;I am heavily Org Mode task driven, these days and I have a manual workflow that I need a teensy bit of help with.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I start work on a task&lt;/li&gt;
&lt;li&gt;I mark it as WORKING (and clock in manually)&lt;/li&gt;
&lt;li&gt;I want to switch to another task&lt;/li&gt;
&lt;li&gt;I mark my original task as WAITING (and clock out manually)&lt;/li&gt;
&lt;li&gt;I then mark my new task as WORKING (and clock in manually)&lt;/li&gt;
&lt;li&gt;After a while I switch to the original task, and clock in manually (after marking the current task as WAITING and clocking out there manually)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;What bugs me, is the clocking in and out, because …&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I tend to forget it, messing up all my clock times and …&lt;/li&gt;
&lt;li&gt;because it is now becoming painful on my middle aged fingers&lt;sup id="fnref:3"&gt;&lt;a href="#fn:3" class="footnote-ref" role="doc-noteref"&gt;3&lt;/a&gt;&lt;/sup&gt;,&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;So, like I said, I prompted Claude to give me code that would clock me in automatically, whenever I changed state to WORKING and clock me out when I switched to WAITING&lt;sup id="fnref:4"&gt;&lt;a href="#fn:4" class="footnote-ref" role="doc-noteref"&gt;4&lt;/a&gt;&lt;/sup&gt;&lt;br&gt;
It spat out some code.&lt;br&gt;
I tried to reasonably guess and verify what it did.&lt;br&gt;
It looked ok.&lt;br&gt;
I tried it.&lt;br&gt;
It worked!&lt;br&gt;
And that’s that.&lt;br&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;
&lt;/p&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;div class="chroma"&gt;
&lt;table class="lntable"&gt;&lt;tr&gt;&lt;td class="lntd"&gt;
&lt;pre tabindex="0" class="chroma"&gt;&lt;code&gt;&lt;span class="lnt"&gt; 1
&lt;/span&gt;&lt;span class="lnt"&gt; 2
&lt;/span&gt;&lt;span class="lnt"&gt; 3
&lt;/span&gt;&lt;span class="lnt"&gt; 4
&lt;/span&gt;&lt;span class="lnt"&gt; 5
&lt;/span&gt;&lt;span class="lnt"&gt; 6
&lt;/span&gt;&lt;span class="lnt"&gt; 7
&lt;/span&gt;&lt;span class="lnt"&gt; 8
&lt;/span&gt;&lt;span class="lnt"&gt; 9
&lt;/span&gt;&lt;span class="lnt"&gt;10
&lt;/span&gt;&lt;span class="lnt"&gt;11
&lt;/span&gt;&lt;span class="lnt"&gt;12
&lt;/span&gt;&lt;span class="lnt"&gt;13
&lt;/span&gt;&lt;span class="lnt"&gt;14
&lt;/span&gt;&lt;span class="lnt"&gt;15
&lt;/span&gt;&lt;span class="lnt"&gt;16
&lt;/span&gt;&lt;span class="lnt"&gt;17
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class="lntd"&gt;
&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-elisp" data-lang="elisp"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;defun&lt;/span&gt; &lt;span class="nv"&gt;mjb/org-clock-in-when-task-state-changes-to-working&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="s"&gt;&amp;#34;Clock in an Org mode task when the status is changed to &amp;#39;WORKING&amp;#39;.&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;when&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;and&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;eq&lt;/span&gt; &lt;span class="nv"&gt;major-mode&lt;/span&gt; &lt;span class="ss"&gt;&amp;#39;org-mode&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;member&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;downcase&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;or&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;org-get-todo-state&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="s"&gt;&amp;#34;&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt; &lt;span class="o"&gt;&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;working&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;)))&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;org-clock-in&lt;/span&gt;&lt;span class="p"&gt;)))&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;defun&lt;/span&gt; &lt;span class="nv"&gt;mjb/org-clock-out-when-task-state-changes-to-waiting&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="s"&gt;&amp;#34;Clock out an Org mode task when the status is changed to &amp;#39;WAITING&amp;#39;.&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;when&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;and&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;eq&lt;/span&gt; &lt;span class="nv"&gt;major-mode&lt;/span&gt; &lt;span class="ss"&gt;&amp;#39;org-mode&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;member&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;downcase&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;or&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;org-get-todo-state&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="s"&gt;&amp;#34;&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt; &lt;span class="o"&gt;&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;waiting&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;)))&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;org-clock-out&lt;/span&gt;&lt;span class="p"&gt;)))&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="c1"&gt;;; These lines make the functions above, hook to Org’s state change mechanism.&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="c1"&gt;;; So that everytime a task’s state changes, these functions are called&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;add-hook&lt;/span&gt; &lt;span class="ss"&gt;&amp;#39;org-after-todo-state-change-hook&lt;/span&gt; &lt;span class="nf"&gt;#&amp;#39;&lt;/span&gt;&lt;span class="nv"&gt;mjb/org-clock-in-when-task-state-changes-to-working&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;add-hook&lt;/span&gt; &lt;span class="ss"&gt;&amp;#39;org-after-todo-state-change-hook&lt;/span&gt; &lt;span class="nf"&gt;#&amp;#39;&lt;/span&gt;&lt;span class="nv"&gt;mjb/org-clock-out-when-task-state-changes-to-waiting&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Reminds me of the old adages about humans and bicycles being the fastest and humans and chess programs&lt;sup id="fnref:5"&gt;&lt;a href="#fn:5" class="footnote-ref" role="doc-noteref"&gt;5&lt;/a&gt;&lt;/sup&gt;, being the best players.&lt;sup id="fnref:6"&gt;&lt;a href="#fn:6" class="footnote-ref" role="doc-noteref"&gt;6&lt;/a&gt;&lt;/sup&gt;&lt;br&gt;
All of it is good, if it aids me, and hopefully does not get in my way.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;soon&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;getting up to speed with the current devops/cloud landscape, for instance&amp;#160;&lt;a href="#fnref:2" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:3"&gt;
&lt;p&gt;Yes, I could reassign them to easier keys, but just having it done automatically is better&amp;#160;&lt;a href="#fnref:3" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:4"&gt;
&lt;p&gt;the task state switches are second nature and don’t bother me much&amp;#160;&lt;a href="#fnref:4" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:5"&gt;
&lt;p&gt;Centaurs, I think, the combination is called&amp;#160;&lt;a href="#fnref:5" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:6"&gt;
&lt;p&gt;and of course, the pilots and giant mechas in Pacific Rim&amp;#160;&lt;a href="#fnref:6" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Rust</title><link>https://janusworx.com/work/rust/</link><pubDate>Wed, 22 May 2024 16:32:40 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/rust/</guid><description>&lt;p&gt;Alright!&lt;br&gt;
Trying to get back to writing. (attempt no. 87,245)&lt;/p&gt;
&lt;p&gt;And trying to learn Rust and document the journey at the same time.&lt;/p&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;


&lt;h3 class="relative group"&gt;Why?
 &lt;div id="why" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#why" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;I want to learn a language that can give me free standing executables to distribute.&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;I want a &lt;em&gt;fast&lt;/em&gt; language. (rather a language that generates fast programs.)&lt;/li&gt;
&lt;li&gt;The little that I’ve learnt of C (which fascinates me), has convinced me that I am one of those folks, who will definitely shoot myself in the foot with it. And most stuff is manual. I’m willing to do the work, but not &lt;em&gt;all&lt;/em&gt; the work. Lazy and all that :)&lt;/li&gt;
&lt;li&gt;That boils it down to C++ &amp;amp; Rust.&lt;/li&gt;
&lt;li&gt;To my mind, it’s an easier path from Python to Rust. The shapes of things are similar. Like Fred Ross would put it, it’s &lt;em&gt;not&lt;/em&gt; an &lt;a href="https://madhadron.com/programming/seven_ur_languages.html" target="_blank" rel="noreferrer"&gt;ur-language&lt;/a&gt; for me.&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;And at this point, it was just looking at a Rust error message that did it for me. Short. Sane. Sensible.&lt;sup id="fnref:3"&gt;&lt;a href="#fn:3" class="footnote-ref" role="doc-noteref"&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 class="relative group"&gt;The Plan
 &lt;div id="the-plan" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#the-plan" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;There’s no grand plan here, unlike Python where I just had to know everything&lt;/li&gt;
&lt;li&gt;Just do a tiny bit daily and write about it. That’s it.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;It’s hard with Python.&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;Lisp is! :)&amp;#160;&lt;a href="#fnref:2" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:3"&gt;
&lt;p&gt;I hope the documentation is as good. I haven’t read much. The little that I have befuddled me. But that is just because of the new, new thing.&amp;#160;&lt;a href="#fnref:3" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>First Love</title><link>https://janusworx.com/personal/first-love/</link><pubDate>Wed, 15 May 2024 14:45:37 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/first-love/</guid><description>&lt;p&gt;&lt;br&gt;

&lt;a href="https://janusworx.com/images/2024/DSCF1084.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/DSCF1084s.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;Moss Roses, in my window.&lt;br&gt;
Click to enlarge&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;Petals unfurl&lt;br&gt;
    from a delicate flower,&lt;br&gt;
    closer to picked&lt;br&gt;
    with each&lt;br&gt;
    passing hour,&lt;br&gt;
    losing the I&lt;br&gt;
    and gaining&lt;br&gt;
    an our.&lt;/p&gt;
&lt;p&gt;— Michael Faudet, &lt;em&gt;First Love, &lt;a href="https://www.goodreads.com/book/show/23627418-dirty-pretty-things" target="_blank" rel="noreferrer"&gt;Dirty Pretty Things&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Make Bad Things</title><link>https://janusworx.com/personal/make-bad-things/</link><pubDate>Mon, 15 Apr 2024 10:54:10 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/make-bad-things/</guid><description>&lt;p&gt;&lt;br&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/make-bad-things.png" alt="cartoon illustration of a sad, bent yellow pencil stil trying to scribble on paper " /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;Art by &lt;a href="https://linktr.ee/amandaswork" target="_blank" rel="noreferrer"&gt;Amanda Domagala&lt;/a&gt;, on &lt;a href="https://amandaswork.tumblr.com/post/731449232798760961/sadbuddies-pssssst-stickers-available-now" target="_blank" rel="noreferrer"&gt;Tumblr&lt;/a&gt;&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;Amanda says,&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;em&gt;&lt;strong&gt;“Make bad things, instead of making nothing”&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;Something similar that’s been drummed into my head innumerable times over the years, by many mentors:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;em&gt;&lt;strong&gt;“If you cannot do it well, do it badly.”&lt;/strong&gt;&lt;/em&gt; :)&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;If you love doing something, if you want to do something … do it.&lt;br&gt;
Does not matter how poorly or badly its done.&lt;br&gt;
You’re going to love it nonetheless.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>No Love Is Wasted</title><link>https://janusworx.com/personal/no-love-is-wasted/</link><pubDate>Sat, 13 Apr 2024 11:51:17 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/no-love-is-wasted/</guid><description>&lt;p&gt;&lt;br&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/no-love-is-wasted.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;via &lt;a href="https://dduane.tumblr.com/post/747600201532014592/the-bird-place-that-was-is-redeeming-itself-a-bit" target="_blank" rel="noreferrer"&gt;Diane Duane&lt;/a&gt;&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;I’m almost 50, and here is the best thing I have learned so far:&lt;br&gt;
every strange thing you’ve ever been into,&lt;br&gt;
every failed hobby or forgotten instrument,&lt;br&gt;
everything you have ever learned will come back to you,&lt;br&gt;
will serve you when you need it.&lt;/p&gt;
&lt;p&gt;No love, however brief, is wasted.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;(I’d add every act of kindness,random or otherwise, to that list.)&lt;/em&gt;&lt;/p&gt;</description></item><item><title>My Reading Life</title><link>https://janusworx.com/personal/my-reading-life/</link><pubDate>Sun, 07 Apr 2024 11:30:48 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/my-reading-life/</guid><description>&lt;p&gt;&lt;br&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/my-reading-life.jpg" alt="a row of monuments ranged by increasing height, beginning with the Eiffel tower. The tallest one, at the extreme right is stack of books" /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;from somewhere on Tumblr. I lost the source. Apologies, original poster!&lt;/p&gt;
&lt;/figcaption&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>The Art of Losing</title><link>https://janusworx.com/personal/the-art-of-losing/</link><pubDate>Sat, 06 Apr 2024 20:39:16 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/the-art-of-losing/</guid><description>&lt;p&gt;&lt;br&gt;

&lt;a href="https://janusworx.com/images/2024/art-of-losing.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/art-of-losing-s.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;A path, somewhere in the palace gardens at Versailles.&lt;br&gt;
Click to enlarge&lt;/p&gt;
&lt;/figcaption&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Lose something every day. Accept the fluster&lt;br&gt;
of lost door keys, the hour badly spent.&lt;br&gt;
The art of losing isn’t hard to master.&lt;/p&gt;
&lt;p&gt;I lost two cities, lovely ones. And, vaster,&lt;br&gt;
some realms I owned, two rivers, a continent.&lt;br&gt;
I miss them, but it wasn’t a disaster.&lt;/p&gt;
&lt;p&gt;— Elizabeth Bishop, &lt;em&gt;&lt;a href="https://www.poetryfoundation.org/poems/47536/one-art" target="_blank" rel="noreferrer"&gt;One Art&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Notes to Self, How to Learn Vocabulary in Another Language</title><link>https://janusworx.com/personal/notes-to-self-how-to-learn-vocabulary-in-another-language/</link><pubDate>Fri, 05 Apr 2024 12:01:16 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/notes-to-self-how-to-learn-vocabulary-in-another-language/</guid><description>&lt;p&gt;&lt;br&gt;

&lt;a href="https://janusworx.com/images/2024/how-to-learn-vocabulary-in-another-language.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/how-to-learn-vocabulary-in-another-language-s.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;“Liberty &lt;em&gt;&amp;amp;&lt;/em&gt; equality forever, or Death!”&lt;br&gt;
Written on the &lt;a href="https://en.wikipedia.org/wiki/Luxor_Obelisks" target="_blank" rel="noreferrer"&gt;Luxor Obelisk&lt;/a&gt; at the Place de la Concorde in Paris, France&lt;br&gt;
(Click for a larger image)&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;I recently read Scott H. Young’s article on &lt;a href="https://www.scotthyoung.com/blog/2024/04/02/learn-vocabulary-language/" target="_blank" rel="noreferrer"&gt;How to Learn Vocabulary in Another Language&lt;/a&gt; and realised it would be a handy guide for me, as I go about increasing my French &lt;em&gt;&amp;amp;&lt;/em&gt; Urdu vocabulary.&lt;/p&gt;
&lt;p&gt;This is what I took away:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The first 2000 words will cover 80-90% of a language’s vocabulary. 3000 will cover 95%. That should be your goal.&lt;/li&gt;
&lt;li&gt;Use a frequency dictionary, then according to frequency do 1000/2000/3000 words&lt;/li&gt;
&lt;li&gt;10000 will lead to almost being fluent. Hard to do that quickly with French, sitting in India. But, aspirational goals :)&lt;/li&gt;
&lt;li&gt;Do:
&lt;ul&gt;
&lt;li&gt;Flash cards, knowing that this will not teach you the nuance and flavour and texture of French&lt;/li&gt;
&lt;li&gt;Graded reading, Like the article states&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;&lt;p&gt;To successfully guess the meaning of a new word from its context, we need to understand between 95% and 98% of the surrounding words. This is difficult to achieve with native-level materials. Graded readers, which deliberately limit vocabulary, can be beneficial here.&lt;/p&gt;
&lt;/blockquote&gt;&lt;ul&gt;
&lt;li&gt;If you’re doing the slow and steady way, because you lack the time, then growth &lt;em&gt;&lt;strong&gt;will&lt;/strong&gt;&lt;/em&gt; be slow. Assume 400 new word families a year&lt;/li&gt;
&lt;li&gt;Use the four pillars of learning. Paraphrasing &amp;amp; Quoting the article:
&lt;ol&gt;
&lt;li&gt;&lt;em&gt;&lt;strong&gt;Meaning-focused input.&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;
Input provides the raw data for learning new words and enriches the contextual associations of words studied deliberately elsewhere.
This includes conversations, books, films, television and other media that you attend to primarily for their meaning.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;&lt;strong&gt;Meaning-focused output.&lt;/strong&gt;&lt;/em&gt; &lt;em&gt;(Note: I am focussed on reading and writing)&lt;/em&gt;&lt;br&gt;
Speaking and writing are more difficult than simply understanding particular words from input, as using words correctly requires a more precise knowledge of each word and its meaning.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;&lt;strong&gt;Language-focused learning.&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;
This is the deliberate act of memorizing words, studying flashcards, or receiving explanations about word meanings. Webb and Nation argue that this should account for ~25% of the time spent learning a language.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;&lt;strong&gt;Fluency development.&lt;/strong&gt;&lt;/em&gt; &lt;em&gt;(I don’t know how I’ll do this. Re read stuff? Watch TV again.)&lt;/em&gt;&lt;br&gt;
Finally, attention should be paid to activities that speed up the understanding and production of words already known. Familiar materials that enable quick reading or conversations on familiar topics may not be needed to build new vocabulary, but they reinforce what was learned previously.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Ursula Vernon on Unrealistic Expectations and Eating Bread</title><link>https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/</link><pubDate>Tue, 05 Mar 2024 12:50:35 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/</guid><description>&lt;br&gt;


&lt;figure&gt;
 &lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="auto"
 alt=""
 width="960"
 height="1604"
 src="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/cook_hu_c65038f6053aedff.jpg"
 srcset="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/cook_hu_c65038f6053aedff.jpg 800w,/personal/ursula-vernon-on-unrealistic-expectations/cook_hu_ea8bffa88345b00.jpg 1280w"
 sizes="(min-width: 768px) 50vw, 65vw"
 data-zoom-src="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/cook.jpg"
 /&gt;
 
 
 &lt;/figure&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;If you’re ever feeling guilty about not cooking a fresh home-cooked meal, a reminder that people in cities historically either had cooks or ate at food stalls, going back to Ancient Greece. Ancient Egypt, too, although since everybody ate bread, beer, and onions, less of a thing.&lt;/p&gt;
&lt;p&gt;It’s a weird quirk of our obsession with nuclear families that everybody is expected to have time, skill, and equipment to cook daily and that if you’re a woman, particularly, you are a lesser person if you aren’t casually able to cook every day with random fresh ingredients.&lt;/p&gt;
&lt;p&gt;Don’t buy into that. People since forever have hired cooks, gone to inns, lived in extended families where it wasn’t always your turn to cook, or ate such simplified diets that it was less of an issue.&lt;/p&gt;
&lt;p&gt;You haven’t failed at a normal human task,&lt;br&gt;
you have been sold an unrealistic expectation and told it was a normal human task.&lt;br&gt;
Go get takeout.&lt;br&gt;
Or beer, bread, and onions.&lt;br&gt;
Eat cheese and some dates.&lt;br&gt;
Relax.&lt;/p&gt;
&lt;p&gt;— &lt;a href="https://tkingfisher.tumblr.com/" target="_blank" rel="noreferrer"&gt;Ursula Vernon&lt;/a&gt; via, &lt;a href="https://dduane.tumblr.com/post/743864386772451328/c-ptsdrecovery-for-those-who-have-overactive" target="_blank" rel="noreferrer"&gt;Diane Duane&lt;/a&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;
&lt;br&gt;
I stumbled across Ursula from her art.&lt;/p&gt;







	






































	
	

	
		&lt;script src="https://janusworx.com/shortcode-gallery/jquery-3.7.1.min.js"&gt;&lt;/script&gt;
	

	
		&lt;script src="https://janusworx.com/shortcode-gallery/lazy/jquery.lazy.min.js"&gt;&lt;/script&gt;
	

	&lt;script src="https://janusworx.com/shortcode-gallery/swipebox/js/jquery.swipebox.min.js"&gt;&lt;/script&gt;
	&lt;link rel="stylesheet" href="https://janusworx.com/shortcode-gallery/swipebox/css/swipebox.min.css"&gt;

	&lt;script src="https://janusworx.com/shortcode-gallery/justified_gallery/jquery.justifiedGallery.min.js"&gt;&lt;/script&gt;
	&lt;link rel="stylesheet" href="https://janusworx.com/shortcode-gallery/justified_gallery/justifiedGallery.min.css"/&gt;


&lt;style&gt;
	

	
&lt;/style&gt;





&lt;div id="gallery-2e5ab9162b0ad7d83702c9f373976e3b-4-wrapper" class="gallery-wrapper"&gt;
&lt;div id="gallery-2e5ab9162b0ad7d83702c9f373976e3b-4" class="justified-gallery"&gt;
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-1/ursula-vernon-01.jpg"
					class="galleryImg"
					
						

						
							data-description="&lt;br/&gt; "
						

						
					
					&gt;
					&lt;img
						width="600" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AKWkeF7WSwhaLd5vljfjkgHn8avXfhKN7VlVJVcR7gzgYJwTg9fp&amp;#43;NaMNqq2cIm8sQ7F&amp;#43;V&amp;#43;n3ce3apZbe2MKeXaxOqhipRwuMnpy1eDKq5O9z1VT5UcQNF1CFRKdOnIz0KGtS0to7j7RBIikBTwVGRx/OuijsFWd82oeMEhcSgcdf73sD&amp;#43;Aqn5SQGdlB3upkZSOQx557U5VrxsOnFJlHUZJru0jMTiMpCu0uMqrYycj06Cr2lMRFM1zsiOVBCjeOnt61Q0W8sbyzgc3UG9Y1Lh2xg4X/AArTN5HFbb4pl&amp;#43;dhnaei0puy5bDiuZ3JhNbsEBni2nB/49c57dM8Yx/KkkktpYJEWVWMkR2KYdpAAz1zg9CKnGr2rwlRcvG2CQwcZAB9DVDUtYt4raSH7YZtykHzJV/TFZXbW39fcPl5Wf/Z"
							
							class="lazy"
							data-src="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-1/ursula-vernon-01_hu_5386727f0ab4cdd2.jpg"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-1/ursula-vernon-02.jpg"
					class="galleryImg"
					
						

						
							data-description="&lt;br/&gt; "
						

						
					
					&gt;
					&lt;img
						width="600" height="429"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABcAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AOhVhK2VK8988VJb3NpHcrmUb8YAJ4z9a5vT9YSVsOoIPrzirOq3zxW0csS5VXDbh2INehOL6HlQkk9SW51TbfTopVwG6DqKtWl7FMAzMFYdQawtCmuNW1i5vSmEJJbA4Ge1XNQv4LZiscURYdWwCacVfQmckjz&amp;#43;DViHDEMpB6qcVtnxQ0lm9qwZkcYOTmuSj61bj61xxqSvZnrzoU2r2N&amp;#43;016Sztfs8BZE3FjgDJP1qrPfSXhOFc5PJZ85qgverFr/WtJTa2M4UIPc//9k="
							
							class="lazy"
							data-src="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-1/ursula-vernon-02_hu_e6dd79d10b97ce22.jpg"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-1/ursula-vernon-03.jpg"
					class="galleryImg"
					
						

						
							data-description="&lt;br/&gt; "
						

						
					
					&gt;
					&lt;img
						width="394" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAFQMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/APXryYRIqiXZK5/druUFz6Dd1qlDdTRXKrd3BjVmVV3tENzHoOOeT/SqfjFNPltNPi1IIYZL1VG9NwBKP&amp;#43;X1rnrDwvbeGry51CSXMcU0Zt5M7yV&amp;#43;UsRydi/eXnJx3oA9CpKKWgDk/iB9taz0mHT4RLcy6kioCcAfI/JPYCub1yx8YXuhzh/syQm1aXy0kLEqvUDgc8g16TeGRYDJBbrPMnMaM20Z6dcHHWqLtqIjt1j09H8vAYPMFyMYI6H6/hQBdsJzc6dbXB6yxK5/EA1YpkQAiVVTYAMBfSn0Af/Z"
							
							class="lazy"
							data-src="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-1/ursula-vernon-03_hu_44f30985715014ef.jpg"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-1/ursula-vernon-04.jpg"
					class="galleryImg"
					
						

						
							data-description="&lt;br/&gt; "
						

						
					
					&gt;
					&lt;img
						width="445" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAGAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/APZaw18aaA2pCw&amp;#43;3qJHbYjkHY7egbpVH4h6rLp&amp;#43;gC3g3&amp;#43;ZeP5Z2HnYBlvz4H41wXhG80OC51F9eFsoijj8tLmLfjJbJRRnn7vbPFAHrbX5Gsx2CpuDQvI7D&amp;#43;AgrgH65P5Vdrm/CF3b6mlxqNq0jQlY7eIuuCUXJBAPOPn7&amp;#43;ntXSUAebfEy8jfV7O0aRk8iAykAcHccf&amp;#43;yV5frSAaj8jsT5QbOAMjJ4r3DxF4Ji1y&amp;#43;a&amp;#43;F9LDMyhSpVXUAdMAjI6&amp;#43;tcvcfB&amp;#43;W5l3trCxkLtAS3AGPfnrQBa&amp;#43;EMiRWF3apDLGrhJ1Eo&amp;#43;bkYP4cDHsc969HrlPCPgWHwo5kjv57glSu18bRnGe2ew/WuroA//9k="
							
							class="lazy"
							data-src="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-1/ursula-vernon-04_hu_80cd472fc24f45d8.jpg"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-1/ursula-vernon-05.jpg"
					class="galleryImg"
					
						

						
							data-description="&lt;br/&gt; "
						

						
					
					&gt;
					&lt;img
						width="600" height="437"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABcAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/APZq5bw14p1PW9a1G1n0pIrO1meFLlJgcsp6EdTx3A/&amp;#43;tb8W&amp;#43;IZvDeli9itknHmKrB2IGCe2Aef0ryTS/ELW8urWsU9zGbmQMHtc&amp;#43;Z/rQWKkdMoW546jmgD1h73U4fF0Nq99AbO5VzHB5PzKEAyd2a6AEMMggg9xXgsXiBG1u5uHhN3HNujMtxK/nLCFwV&amp;#43;UgA4HJ5zXpHwslSXwm23eCly6kMxIHAOACeB82KALXj3w9qXiPTLa206SJTHNvkEjlQwwR2B9TXEL8HNYkKedqNig43FN7H69BmvYKKAPMV&amp;#43;DqxI8q6w0sxR9qtFtUsykDJyTjmuo8C&amp;#43;G73wvpE9leTQymS4MqeUSQAVA7geldNRQB//Z"
							
							class="lazy"
							data-src="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-1/ursula-vernon-05_hu_52e7904fa8332b7d.jpg"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
&lt;/div&gt;
&lt;/div&gt;

&lt;script&gt;
	if (!("HSCGjQuery" in window)) {
		if (!window.jQuery) {
			throw new Error("jQuery is not loaded, hugo-shortcode-gallery wont work without it!");
		}
		window.HSCGjQuery = window.jQuery.noConflict(true);
	}

	
	
	
	
	
	;(function($) {

		$( document ).ready(() =&gt; {
			const gallery = $("#gallery-2e5ab9162b0ad7d83702c9f373976e3b-4");
			

			
			let swipeboxInstance = null;

			
			
			gallery.on('jg.complete', () =&gt; {
				
					
					
					$(() =&gt; {
						$('.lazy').Lazy({
							visibleOnly: true,
							afterLoad: element =&gt; element.css({filter: "none", transition: "filter 1.0s ease-in-out"})
						});
					});
				

				swipeboxInstance = $('.galleryImg').swipebox(
					$.extend({},
						{ }
					)
				);
			});

			
			gallery.justifiedGallery($.extend(
				{
					rowHeight : "150",
					margins : "5",
					border : 0,
					randomize : false ,
					waitThumbnailsLoad : false,
					lastRow : "justify",
					captions : false,
					
					
				},
				{ }
			));

			
			
		});

	
	
	
	})(window.HSCGjQuery)
&lt;/script&gt;

&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;Art courtesy, &lt;a href="https://tkingfisher.tumblr.com/" target="_blank" rel="noreferrer"&gt;Ursula Vernon&lt;/a&gt;&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;And then I realised she is an accomplished children’s author&lt;/p&gt;







	







































&lt;style&gt;
	

	
&lt;/style&gt;





&lt;div id="gallery-2e5ab9162b0ad7d83702c9f373976e3b-7-wrapper" class="gallery-wrapper"&gt;
&lt;div id="gallery-2e5ab9162b0ad7d83702c9f373976e3b-7" class="justified-gallery"&gt;
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-2/uv-book-3.webp"
					class="galleryImg"
					
					&gt;
					&lt;img
						width="266" height="400"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAFQMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/APPrDT1ulKxyquwjiQfeHOT&amp;#43;Hp71c/sWdoXb5AQRyQAMY&amp;#43;lTaSkPkrJHvMwUiRVXIBJOOMewrQlCyQBGSTLKGUKqnPHr&amp;#43;P8AKqcmmdJyU1vslZH5ZSV&amp;#43;U8UzyU/un8//AK1X7&amp;#43;GJJ9sLnAADb&amp;#43;u7v2qt5Y/vitBXJ7a7mtgViOxXGDjuOn&amp;#43;NdJrtrJp&amp;#43;mW139tdzMFCZPzKcHeDjj&amp;#43;73z1FcpDJbl1WVmRAAcjkmrpvoXs1tmurjylGBGAAvXPPryTWbTbTQ1sU5Jndy7HJbkk03zG9vyps8kaSsI2JjzlSw5x2zUfnD1rX5Csf/2Q=="
							
							class="lazy"
							data-src="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-2/uv-book-3_hu_15e812c99ed6a87.webp"
						

						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-2/uv-book-2.webp"
					class="galleryImg"
					
					&gt;
					&lt;img
						width="267" height="400"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAFQMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/APMUhzuABbj0qUWrxocqV7HI5FXNL2C4YtL5bLGSrdsnjkd&amp;#43;Ca3ZLq1DzEXcj7S&amp;#43;0DB&amp;#43;nOOeMf5NNytpYEjjyqL/AMsgx9WJpPl/590/WrEyRiVsHC7jjvTNqf3z&amp;#43;VUISCQPINx2BjgnrgdzXSX1roEelZsbuRp1jD5boWPVcY/zxXMxPAXUSsyqAOV7/wCeKl8yyKYMs2cf3R1qXrbUaIXkO7tTfMPtTZmRZWEZJjz8pPXHbNM8wVQH/9k="
							
							class="lazy"
							data-src="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-2/uv-book-2_hu_203c973f69587e12.webp"
						

						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-2/uv-book-1.webp"
					class="galleryImg"
					
					&gt;
					&lt;img
						width="267" height="400"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAFQMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AOCstLupR8lu3TOWUAYxnjPtV1tGvBwYVznHRetXNGWTVmS2F9BaGJFVRM5Xfjjg46&amp;#43;1bU3h/UIrdpJtQt7ZF4Mk0u0Mc9u/p1FS6lnZsyUL6pHCXMTJJtdQpHqKi2f7n5VsahevKyKBGxjyDIBkOM8cHpVPzpfRf&amp;#43;&amp;#43;Fq03YydrkccmH46Cr93qMt5HGsxBEKbEwoHH4Vn27QEhZSyqBnI6/56VOGstvMkucegodi9SMyAdVBPvSeav9wfnUc0qCVgjEpn5SepHvUfnCiwtD/9k="
							
							class="lazy"
							data-src="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-2/uv-book-1_hu_c25ec14264270f44.webp"
						

						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
&lt;/div&gt;
&lt;/div&gt;

&lt;script&gt;
	if (!("HSCGjQuery" in window)) {
		if (!window.jQuery) {
			throw new Error("jQuery is not loaded, hugo-shortcode-gallery wont work without it!");
		}
		window.HSCGjQuery = window.jQuery.noConflict(true);
	}

	
	
	
	
	
	;(function($) {

		$( document ).ready(() =&gt; {
			const gallery = $("#gallery-2e5ab9162b0ad7d83702c9f373976e3b-7");
			

			
			let swipeboxInstance = null;

			
			
			gallery.on('jg.complete', () =&gt; {
				
					
					
					$(() =&gt; {
						$('.lazy').Lazy({
							visibleOnly: true,
							afterLoad: element =&gt; element.css({filter: "none", transition: "filter 1.0s ease-in-out"})
						});
					});
				

				swipeboxInstance = $('.galleryImg').swipebox(
					$.extend({},
						{ }
					)
				);
			});

			
			gallery.justifiedGallery($.extend(
				{
					rowHeight : "150",
					margins : "5",
					border : 0,
					randomize : false ,
					waitThumbnailsLoad : false,
					lastRow : "justify",
					captions : false,
					
					
				},
				{ }
			));

			
			
		});

	
	
	
	})(window.HSCGjQuery)
&lt;/script&gt;

&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;And she does not stop there, she writes &lt;a href="https://www.thehugoawards.org/hugo-history/2023-hugo-awards/" target="_blank" rel="noreferrer"&gt;Hugo award winning books&lt;/a&gt; for adults across genres; horror, fantasy and romance.&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;







	







































&lt;style&gt;
	

	
&lt;/style&gt;





&lt;div id="gallery-2e5ab9162b0ad7d83702c9f373976e3b-9-wrapper" class="gallery-wrapper"&gt;
&lt;div id="gallery-2e5ab9162b0ad7d83702c9f373976e3b-9" class="justified-gallery"&gt;
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-3/uv-abook-3.webp"
					class="galleryImg"
					
					&gt;
					&lt;img
						width="400" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAFQMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AH&amp;#43;G9Dg1qK4&amp;#43;0wPGkbY83GC55zhuvb9a2j4F01drZb5TnAY/480/w1Y3c&amp;#43;lubO4WKESt8jjq2eexx3q5bfar2URW95hgPmZ4gueOox9QccUrhY8&amp;#43;1W2e31Oa2SFoDEcZxtDjsQKqeXN/fNdP4iilj1uVLg&amp;#43;ZKI1yyemTjsO1Zu3/AGJPypgd34EkQ6LKM9LqX&amp;#43;dbdvaQwTXUiptLyZU56jaDx&amp;#43;Oa8u0PxM2m/aIZ2mh3TE5CE9/T35/StV/GkITK31wT1A8hh/WkA3xTIn/CU3PDH9zF938ay96f3ZKpT6rcX&amp;#43;pXE6pIwO35ipOTzmk&amp;#43;0XP/ADyf/vmmB//Z"
							
							class="lazy"
							data-src="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-3/uv-abook-3_hu_b8b64b51822e6ddb.webp"
						

						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-3/uv-abook-2.webp"
					class="galleryImg"
					
					&gt;
					&lt;img
						width="388" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAFQMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AOV8FX1voE8j3doGu7nYLLzeEznHJ7cN1rN1KBrO4kju7ILJuOTvyM&amp;#43;xBwfwqGa2kvUtZ7i/hYGJyFZ8tGF6gj1PYd6vQRFEFpc30EsO9ECFsglwTu56Y7kdOlTGXKwlrY564lQuDFGIxjoCT/OovMPrU&amp;#43;p2v2SZBuH7xS2zOSnzEYP5Z&amp;#43;hFUs&amp;#43;9aXFYvwK7jKLuKgn5QcKBwD&amp;#43;dTvEz28KWlpMApBlDnJL8DIH1B/w4qOwvZbJhJb3CwMRtJ4yRkHHI9QPyqdtUu441AvY2EcnmJwuA2MZ6enGPYVmMztTkDTKAMMAdw9DnpVPJp0g&amp;#43;c5ff7g5plMZ//9k="
							
							class="lazy"
							data-src="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-3/uv-abook-2_hu_ecf8186225e92616.webp"
						

						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-3/uv-abook-1.webp"
					class="galleryImg"
					
					&gt;
					&lt;img
						width="313" height="500"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAFAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AOJ0fwzLq1oLncwV3MaBcZJGM9T7im6xolnZIIrVLlpwwDyMcp06dOufwrS0ltIsrK2lhZ3ndgJ5mHC8jIAPpnrWpqH2W0YzRpPMsThPKa52soJBJx2XBIzjGe1Td3NlFW1PPCrKcMCCOoPaitnxBBbRaowRlQsoZlBJGT15xWZsg/56/of8KpGbVnYt6FdXFrqKSwOUUY8xgcbUyCce/FdJrMtpHObiTVYTchN6lV3FiN3HHA&amp;#43;6B&amp;#43;P1rlLaeK3O/wAsl9pGc9DnqPTjipbq9tXZRFZqVVcAuzE5PJPX1zSBOxBe3LXl5JOxHztngYH4DtUGPenTSCaQuI1jBx8q9BxTMUxH/9k="
							
							class="lazy"
							data-src="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-3/uv-abook-1_hu_28f6c4d73144b025.webp"
						

						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
&lt;/div&gt;
&lt;/div&gt;

&lt;script&gt;
	if (!("HSCGjQuery" in window)) {
		if (!window.jQuery) {
			throw new Error("jQuery is not loaded, hugo-shortcode-gallery wont work without it!");
		}
		window.HSCGjQuery = window.jQuery.noConflict(true);
	}

	
	
	
	
	
	;(function($) {

		$( document ).ready(() =&gt; {
			const gallery = $("#gallery-2e5ab9162b0ad7d83702c9f373976e3b-9");
			

			
			let swipeboxInstance = null;

			
			
			gallery.on('jg.complete', () =&gt; {
				
					
					
					$(() =&gt; {
						$('.lazy').Lazy({
							visibleOnly: true,
							afterLoad: element =&gt; element.css({filter: "none", transition: "filter 1.0s ease-in-out"})
						});
					});
				

				swipeboxInstance = $('.galleryImg').swipebox(
					$.extend({},
						{ }
					)
				);
			});

			
			gallery.justifiedGallery($.extend(
				{
					rowHeight : "150",
					margins : "5",
					border : 0,
					randomize : false ,
					waitThumbnailsLoad : false,
					lastRow : "justify",
					captions : false,
					
					
				},
				{ }
			));

			
			
		});

	
	
	
	})(window.HSCGjQuery)
&lt;/script&gt;

&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;And talk about making art from pain, she fucked cancer right in the eye!&lt;/p&gt;







	







































&lt;style&gt;
	

	
&lt;/style&gt;





&lt;div id="gallery-2e5ab9162b0ad7d83702c9f373976e3b-11-wrapper" class="gallery-wrapper"&gt;
&lt;div id="gallery-2e5ab9162b0ad7d83702c9f373976e3b-11" class="justified-gallery"&gt;
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-4/ursula-vernon-bob-01.jpg"
					class="galleryImg"
					
						

						
							data-description="&lt;br/&gt; "
						

						
					
					&gt;
					&lt;img
						width="395" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAFQMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AO68Vag2k&amp;#43;H7m9jdlZDGFZSBtLOq554xzXK2vi28l1m1t2upzFNcJEAUUEAybcH0PBOP7rA98V1M7T3oVhMI1VsrgOCex6EZ7/pUCWUuVZrwgA5ZS0mSO&amp;#43;PmqFKNrm8ozvY3J0GR8&amp;#43;2odn/TUVRnm3uDukP&amp;#43;6f8A630qPcPWf8x/hXPKpG51RoStqN8qJxuUJuzyCoycmrUVq8bgfZlYP22dKgvDqjxW8ehG2jmO7znnHHseuTz/AJ45pXWkeJbtpWPiQQRBvuQIflGVOAeD2PfgHrVwit7mNWUrtWNSfZAwGzbn&amp;#43;HaRiovPT0P/AHyaedywQx75GMcYQsRknAxk578U35vV/wDvkf41jJK51Qfuq5//2Q=="
							
							class="lazy"
							data-src="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-4/ursula-vernon-bob-01_hu_3ddf5b2c1ab30669.jpg"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-4/ursula-vernon-bob-02.jpg"
					class="galleryImg"
					
						

						
							data-description="&lt;br/&gt; "
						

						
					
					&gt;
					&lt;img
						width="395" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAFQMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AL&amp;#43;jaNol1oNldXumrcz3EkoLG5eP7rADADD17Cp00vwxt3R6LHkAYP8AaD4zycf6z05qHwq0p0wQweIpYCsjA2iMhZcnryMnJ9vxqfxJN4i0Szhu49dutry7WjliXIXH3sgcenIHWoVrbGjvzWuYfitLLStWWC0t/LjeCOUKZGfG5QeCSaxf7Qj/AOea068v31ef7Ve3ck0xAUuwA4HQcCoPKt/&amp;#43;ep/z&amp;#43;FZtXdzeMrKxXt5ZbW8imt1ZJIpA6OecEHIrubLW4NZ0uS11LUorV5TseJVwWXg53Nxyc9BkVDpHjJdG0yDT5LOVpYcjcFBB5J9ferg&amp;#43;JVgigSWFyc5AwF/xq1ZdTGV30OXvtLsbS8e3sZUuYkAzJMxBJxyMDHFV/sY/55W3/fbf41d8T60niK&amp;#43;hnsrSREhiCEMAMnJPb61i&amp;#43;Rdf8&amp;#43;5rNp30NY2tqf/Z"
							
							class="lazy"
							data-src="https://janusworx.com/personal/ursula-vernon-on-unrealistic-expectations/image-set-4/ursula-vernon-bob-02_hu_43e46c52856a8c9f.jpg"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
&lt;/div&gt;
&lt;/div&gt;

&lt;script&gt;
	if (!("HSCGjQuery" in window)) {
		if (!window.jQuery) {
			throw new Error("jQuery is not loaded, hugo-shortcode-gallery wont work without it!");
		}
		window.HSCGjQuery = window.jQuery.noConflict(true);
	}

	
	
	
	
	
	;(function($) {

		$( document ).ready(() =&gt; {
			const gallery = $("#gallery-2e5ab9162b0ad7d83702c9f373976e3b-11");
			

			
			let swipeboxInstance = null;

			
			
			gallery.on('jg.complete', () =&gt; {
				
					
					
					$(() =&gt; {
						$('.lazy').Lazy({
							visibleOnly: true,
							afterLoad: element =&gt; element.css({filter: "none", transition: "filter 1.0s ease-in-out"})
						});
					});
				

				swipeboxInstance = $('.galleryImg').swipebox(
					$.extend({},
						{ }
					)
				);
			});

			
			gallery.justifiedGallery($.extend(
				{
					rowHeight : "150",
					margins : "5",
					border : 0,
					randomize : false ,
					waitThumbnailsLoad : false,
					lastRow : "justify",
					captions : false,
					
					
				},
				{ }
			));

			
			
		});

	
	
	
	})(window.HSCGjQuery)
&lt;/script&gt;

&lt;p&gt;&lt;br&gt;

&lt;a href="https://www.tumblr.com/tkingfisher/724064506566852608/warning-long-post-about-something-very-near-my" target="_blank" rel="noreferrer"&gt;Read&lt;/a&gt; &lt;a href="https://www.tumblr.com/tkingfisher/724096280068079616/part-2-of-the-saga-of-bob-part-i-here-thank-you" target="_blank" rel="noreferrer"&gt;all&lt;/a&gt; &lt;a href="https://www.tumblr.com/tkingfisher/724104134023921664/the-saga-of-bob-part-iii-part-i-part" target="_blank" rel="noreferrer"&gt;about&lt;/a&gt; &lt;a href="https://www.tumblr.com/tkingfisher/724217483118198784/the-saga-of-bob-part-four-feelings-are" target="_blank" rel="noreferrer"&gt;her&lt;/a&gt; &lt;a href="https://www.tumblr.com/tkingfisher/726303712302202880/the-saga-of-bob-part-5-chemo-time-part-i-part" target="_blank" rel="noreferrer"&gt;long&lt;/a&gt; &lt;a href="https://www.tumblr.com/tkingfisher/729729254082936832/for-anyone-wondering-how-treatment-is-going-its" target="_blank" rel="noreferrer"&gt;journey&lt;/a&gt; &lt;a href="https://www.tumblr.com/tkingfisher/736896994633826304/the-saga-of-bob-part-7-i-think-part-1-part-2" target="_blank" rel="noreferrer"&gt;here!&lt;/a&gt;&lt;br&gt;
And if it does not inspire you, and make you shed a tear, I’ll eat my hat.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;I’d say she’s a female Neil Gaiman. But let’s face it. She’s far more talented and kicks ass. Gaiman is the male T Kingfisher!&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Beautiful Arunachal!</title><link>https://janusworx.com/personal/beautiful-arunachal/</link><pubDate>Mon, 04 Mar 2024 05:45:00 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/beautiful-arunachal/</guid><description>&lt;br&gt;

&lt;p&gt;Memories of a trip, from a few years ago.&lt;br&gt;
This was the second best vacation&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt; I’ve had!&lt;/p&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;








	






































	
	

	
		&lt;script src="https://janusworx.com/shortcode-gallery/jquery-3.7.1.min.js"&gt;&lt;/script&gt;
	

	
		&lt;script src="https://janusworx.com/shortcode-gallery/lazy/jquery.lazy.min.js"&gt;&lt;/script&gt;
	

	&lt;script src="https://janusworx.com/shortcode-gallery/swipebox/js/jquery.swipebox.min.js"&gt;&lt;/script&gt;
	&lt;link rel="stylesheet" href="https://janusworx.com/shortcode-gallery/swipebox/css/swipebox.min.css"&gt;

	&lt;script src="https://janusworx.com/shortcode-gallery/justified_gallery/jquery.justifiedGallery.min.js"&gt;&lt;/script&gt;
	&lt;link rel="stylesheet" href="https://janusworx.com/shortcode-gallery/justified_gallery/justifiedGallery.min.css"/&gt;


&lt;style&gt;
	

	
&lt;/style&gt;





&lt;div id="gallery-9b286b7fada66ba39117d3a0cdfb5e2f-2-wrapper" class="gallery-wrapper"&gt;
&lt;div id="gallery-9b286b7fada66ba39117d3a0cdfb5e2f-2" class="justified-gallery"&gt;
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1598.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/849sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AO9iljdTvjAP1qjpXiGy1aa8gt4ZR9jm8tmfo3XkY&amp;#43;hrmviLfJpnhya1kZy94NkbRjoQQcH61y3gFdV0LVVnvECWlxEUdXPzL3U4&amp;#43;vr2NaSnGL1diFG60PWm2v8AOvysP1pGuMJyPmrHk8S6amN80Z9t4pP&amp;#43;Er0wKMOgz/tf/WqyDkdS0n&amp;#43;1ri1cXLSTxXCSbXfdkDr19v5VavrW9iuY1jEZjmYjcYi2znqxyMDml07/AJC6f7x/9BNbF1/qR9D/AErlilJe9qdD02PPrzIv7gkgJbzMrnoCcnj8cVRLyyOSCfMzk&amp;#43;h9qu6l/rNV/wCv1v5tVSD/AFg/D&amp;#43;VU2Stz/9k="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1598_hu_89690523ec1007e2.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1586.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/15385sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AOqh4INXDKEKyg4YcHispb5FHUZpjaipcBm4rUg19TvZorcTxgFwMnacEgetcbqXi25aGSE7WVzk5q5rPiAQ4ggxNuUgAHmuUNrcTSCXyVUHnqT&amp;#43;lCEzWfWNOiUlrkMAcZDgk/lUSeINK5M0mWxkIDk/Q9MVxsv/AB6j/rsP5CoD/wAfT/75rPmZdjsv&amp;#43;EmtZnO21nTnCgRKB&amp;#43;ZYn9KdLq8q7mjks0PGFd3bH/fKVzsPValk60uZjsj/2Q=="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1586_hu_3cb17cfaa47d26e5.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1579.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/13333sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AN6y0w/YjNPAhUL84XqK2dBZInjaa3AjydhPOK42z8XJYMAIH8pwN7k4wfSp28e2zyFfKYoOQdwyD61s9TNaGp4l1oXOqSJFwkZ2gjvWbFfSKc7jWM&amp;#43;r2NxKzJcDceSH4qRtRtEXm4jzjoGBo2QblM&amp;#43;GtXtnUPZq0RUsSHzk/QipT4R1F3b7JaAEjozcE5HGO2eua768&amp;#43;7H9Kmsv9f8AgKQHl154X1C1ZC1u0km4AiGQfJnHXI&amp;#43;vSqk&amp;#43;iXtpHcT&amp;#43;Qsyxsdo8ptz&amp;#43;wwPbrnvXo2of8fcn&amp;#43;9/WqFz/AMeb/wC8f507Bc//2Q=="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1579_hu_63b52893f70afb40.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1431.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/6061sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/ANGKIcA9K057WwOnqyZ8/PzDHFVri/0azbbNqMKkdgS38qgGt6NISkV4ZCBnhCM/nXouz6nGm0QSQDnAqvJB7VJca5Yp92OZufQD&amp;#43;tUL/wAW6FZWxkaZ3l7Qhfmz/KrUopbkWbehyKkopaURn0DMQf50w6hsL7I4yy9cHcVH50y9&amp;#43;&amp;#43;n0/qaoQf6&amp;#43;7/3T/OuHmZ28qNGTxBcPE8NvI7sRyNoCr68VmpaFZBKy7pFXJDEDB7cflTNP/wCPu4&amp;#43;n9avP/r7j/cH9KU9EKO5//9k="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1431_hu_c99d3ec5aa3171b3.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1405.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/11765sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AOB0vXJ9PnWSJ8Y6g9G&amp;#43;td9p2tW&amp;#43;sQExNiRfvRk8j/61A&amp;#43;E2jFf&amp;#43;Qjeg/wDAT/7LU8Hww022lWWHVr9HU5Bwv&amp;#43;FdEKvKYyhcgmi4LHgDkk1w/iDWormT7PA37lDkt/fP&amp;#43;Feo3/hT7baG3fVp0Vl2uUiQFh3zXPSfCfTz01W5/FVq6lXmVkKFOzuztBeA5ONqjueM0qT4blsjP5VTm/1Df7o/lT&amp;#43;xrnNS2biMg/KuR0z3o8xDkAY9waqH7gqVfu/hQB//2Q=="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1405_hu_1b44e947e4a73856.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1400.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/3788sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/APNXtlWTuuD69K3dO8S3FqogvENwi9JMfMB/WvRD8N9BwV33n18wf4Vl&amp;#43;IPBOi6LpMt/D9pd1IX964Kru4zjA9fzxWsZzhsyHGMtyva6ho9zGGF2EJ5IcYxVefVLVlJjk2oueP4n/wABXQWvw60P7PFJJ9pEjICw80cHHI6U4/DvRQQY3uAR/ekz/SrqV6s48pMKcIu51zMaoarZHU9NltAVXzMH513A4IPr6gVebv8AX&amp;#43;tNX&amp;#43;H6GsyilNBfMm1L1IsdCIcn9TS20U0IPnXTzk8HKKoH5CrUnUU0/wAX1/pTA//Z"
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1400_hu_7c81d759a6331f6c.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1340.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/3788sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AM63bTxH5dpY6inmtjlywxn&amp;#43;7ikl03WIdQjeC0ZMMdjyLtU8dctjNemx6tBJCXMwCqMttbgCvHPHeqHxD4lmnsvMmtrSIKjbTge59Mkmq1FZHUS6VqyW7XV54l0&amp;#43;1jKghBtZj64wf5ZrCk8PqIzO2oSSwyNxKYVLMe/Vs9xXHS3MsVthRtJ&amp;#43;XPpXS/DnTptX1lopzOlkIiZZUXIBHIzTk3LqJRj2OysfE2lXAijuLGK2k&amp;#43;7K2wAHtwRgiqp8PtFo&amp;#43;oR6Hf2/kXcxlljMQ3YyMJuJJIHsO/U1y83&amp;#43;uf8A3q7bw9/yD5Pp/RalMpowNS&amp;#43;Gt3CWuLK4s73c&amp;#43;THgoBkZ78YrOg0XxNbITa2coA6LDJgH8Aea9Rh/49z&amp;#43;P/oAqLSvuw/ST/0KmpMlo//Z"
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1340_hu_5c1ea22e59926532.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1336.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/4902sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AObgZXYRyAI54HPWri2jZ6VPa6FaTwxNeG7WUHkLjpTpNLFvcBk1SRVPAWXlsk/UfpXXDENK0lcwlSTegRWrDtV2KAjHFJapel9qywyKOP8Aj3fOfTOTWnpsNrfsbeWa6S6IyFjZQoHTOMZ6&amp;#43;ua2&amp;#43;swM/YyMG3TWJdaazeaC6RDhoGEkLyA545AwQOuP8attpNzbXMcAe0SKXho5boOFX1IAGR/nNXYv&amp;#43;SkSf9dj/wCgVX1T/kMp/wBe/wDU15h2GXbXem2FxcWuq3U0dymCi2lwssZ2nIHIYg557/zzY8Malb3iLa2VtKsjOzrIH&amp;#43;Zhk/I/KgkYUg5A6e4ri9Q/5Gef/rq3866T4df8f0f/AF0f&amp;#43;dMD/9k="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1336_hu_1720b002e316d892.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1331.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/6061sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AMYX0CSqktvNFuYgF1xV&amp;#43;3ksZgMXUKsf4WkXP863v7OM8oknlRyDnHlKM/mDUeoppdlbPNdrCUxnb5asW&amp;#43;gxzXXGvNbnO6cXsU47UN/qo5J/XyI2kx9doOKsW1uk6khXQr1WRChH4GspNZcfaJrU29gsX7vAjId2OcLuTjnHcgVZXxBPeW1yktnJNb28XBlPsBjcpDK3XOSBj60fWXcfsUdVaWVlrOnTIrM8bqyCVTwDyMj1x&amp;#43;XFc3pXhaG98SSwywnybPKs&amp;#43;4ktwMqWXaCee4/Cui8E/wDItQ/Vv/QjUvhr/kKav/19S/ySuZq9ja9rnFX3hDz9W1CMaRc29tboDD5Dgm6fIxkYJIOeTgY9aisIBbP/AGPqaf2FHcyZG2NmhuB2zKW9R2x9a9OT/kLN/wBcP61598RvuaB/vw/yahqwJn//2Q=="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1331_hu_54fd333a8b8e603b.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1319.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/5714sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="337"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABIAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AMS6m1aDeoso4VYZSZnyEHqfWnyTXJsYhsmuPMUbpIPlH54/l611b3FnG&amp;#43;0CJc8ZMQIP44qxNYxPtcwxE4zlUUfyFdDrSfUy5Iroedaal1FM8ds08hJwweX5VP4d/wAa0ZoNXSF5ftgbYu4JFbtIScfd6dfxrrGsbOSDyJYF2gkgLGB/IikbSdO&amp;#43;ymDyEKBNoHzjj0yDS55dx2XYyTw7KOAeoFWJAI3ZkG1hjBXg1Xb/AFhqzP1b8K5jUns5pXZ90jn5wOWPvWhk&amp;#43;VIc9qzbH70n/XQf1rS/5ZSfSrRLP//Z"
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1319_hu_fef3959499f7f72b.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1308.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/5714sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/ABNOf&amp;#43;7Uo01z/Caiur3XLRmDQRrEq5DnarZ9SDx/Ksu48eXtowBijYA4J2DNeisRFnG6MjcXTH/ump00xz/DXLt8R9SzshtgWP3R5Qz7cU&amp;#43;LXfE&amp;#43;ousjstttUj55VjVj/u5B/n0puugVKRJDcutl/ozwaijYZgLR8v2wWU&amp;#43;3rVgQ6ReNFG8bW1w2HURrOSuOxDKxxx2/Oq/gv/kDR/Q/&amp;#43;hGrcH/Izw/9cD/7NXlncU7y5ii1Foo9WUzW/A&amp;#43;0xujtjkEHaQevGetQtd/a48zxPIqkKZIkDYPYDbWZ4i/5Gqf6J/6CtX9F/wCQa/8A18p/6Cad3cLaH//Z"
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1308_hu_c933664f26ed91e.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1200.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/121sec ISO 40"
						

						
					
					&gt;
					&lt;img
						width="450" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAGAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AOq0WxinsJjKhEj8DIxgeoqiy3FpMY3t5Rg9dh5&amp;#43;latteMmmWpdyrSIGbnkHuKZfXkpsfPilYCNgx2nkjPNRew0jMec7SdvB65qL7Qv90fmadqlwZ5pWXJIX5sDrWR5j/wBx/wAjVLVAyylwzQkNcMscBChcddxPek&amp;#43;1XNvZSQmbzjnIwuBGucD6/wD1qxNQkm8hooJfL3EE8Z5HSmRXMrzgyuWOAD70nHUL6G9ZsWGWJJ9c1a5qlbPjB6Va873H50Af/9k="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1200_hu_75cb866a44ed2e92.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1161.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/647sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AOJ0/WLzQL3z7WTAOC6nlHHoQK7O18caPfFY71XspDwWYbo8/Ucj8RXOaVor3uniOUpAUGQ0gwwz1yDUFzpelafbT289&amp;#43;bmR2BX7Pzsx69ufrXoQc4K62OWSjJ6nodpFp97&amp;#43;8gvop4/WBg5/&amp;#43;tVC51GC0UCIGQsevQV5o0EZcNCBGxOB5bEHFaukySreRQy6lKnyjAkj3qOvr27ZolWm1aO4KlFO7Ktqk10rRiKPzZG&amp;#43;Z1yMD88Y/CrWo20FmEgtnZpAu55QR154HHSjRv8AXN/u0ah/rm/3G/mahL3RLVk3h6wsJ3aS5eTEI3SHbgA84zk45APGD0rqZdL0m&amp;#43;h86BQ8YXcEt32kH2AIArltF/48tV/65R/&amp;#43;gvXReE/&amp;#43;PJvoK3pJWSsTO&amp;#43;5//9k="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1161_hu_48f3d90502597783.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1153.JPG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/1610sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="338"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABIAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AN2COx1K2FxZ3McsbejYI9iO1Zmr3llpUHlgJJdE/Kqtn8&amp;#43;wrznR1121kD2KzKpHJ8tipHocA&amp;#43;tdTaQgXi/a9PnfJ&amp;#43;Yq2Fzgkkk9eeK9GVao4&amp;#43;6tTjjRgn7z0MvUJri&amp;#43;nIZ&amp;#43;CR82PftVy2s3e3EUchjhzkgH5iR6muggjt0laW02RqfvRywYI&amp;#43;jEc/nUF7rttY5hS1ae5Ch9sSHA9MnpXl1HVk7WPQh7Na3NhhwarKqqMAADPQCrLdKriveZ5KFwPSlHSkpR0pMo/9k="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1153_hu_80b9c7b34acc1922.JPG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1141-1.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/6061sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AKlzdwB9yxSPk4yEIH8qqm7kuLqK0gsXMzchDncw57eleoKVic7EjVe21MH3ry7xP4u8rxJcTwwhLrTbgBFYkrKBwT7dfyrolVmZxpxNe28Maldf661W1XsZJAf0GTWtY&amp;#43;EoLf5hKJJeQXIwF9gD/Or&amp;#43;jatJrOiWupbCnnpuKBshTnB/UVeWdgMEsB6EUpTlJWYlFJ3KyXrXEq4Tgtjhge3tmvEteje/1TU9TETxxG4O&amp;#43;OQlWXOSO3t0&amp;#43;lex6R/rV/66L/6DXlut/wDHvrP/AF8p/Ws29DSKuzufh3qCw&amp;#43;D4E1C5hixI/kq7hTsz9fXdW&amp;#43;&amp;#43;t6UMj7dDx6NmvOtP/AOQDp/8A1yP86U962UdDNs//2Q=="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1141-1_hu_deef195c948c62a4.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1130.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/7407sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AORayY/w1bt9Os/shaa4eKYk42puGPety6svFF1tVdJkdeo8yUHH4kjFRR&amp;#43;FvEtxIvmR2luoGMOf8M16DrRORUmc21oFYgcj1qS206W6mWOKMkk4zjgfWu2tPBJC/wCnXiuc9IE/qf8ACtu20Oygt9kIaKPvyCxPqaJYhJe6EaTvqaKidQA8289ztxmo2h53ZP51ZbpUZ&amp;#43;4PpXKbFYxsD1z&amp;#43;NAZ1Pf8AA1K/Q1H3FAz/2Q=="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1130_hu_4ac24950b733a566.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1121.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/11765sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="450" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAGAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/ANjwt4gPiLTzcvZvbBX2rk5D&amp;#43;4P6Vu9PlJNcromvaS&amp;#43;n2MEeowieOFUdHOzJAHriumik82PIOeMiqZI5oztGD9DSeXL6mhWYZB6cGl3fWgD58VSeQM&amp;#43;wrtvDHhrxBe6fHcrqT2cDj93CZH6Z6gDiqeiaG2s6mUWMR28fzTFBgAeg9zXqUEUcMEccShERQFUdgK0n2JiFnbS29nHDPcNcSoNplfq31/OpvLb0H500vkc0mR/fP5VmUf/Z"
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1121_hu_e3a5af2185c0f57e.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1097.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/11765sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AMVrWNpDGsqFx1UMMj8KgmtFiQyOyqo6nNRN4A8TQo0j6eCqjLBJkY/gAeTVfTtG1DUm8m3gOM8Bztx75PbrXZLE2WiOdUfMRsXMbCAAryN5baPY1BBaedcovnmSZsDyo1LM59MAH9a6eTw5aaPZWh1u6lVbl1UPaMCGyegPJGOpIGOOvNdL4cggsJ/sNlpgs5cHzZdhZ1wehkYYOfYY/lXJJym7yOhWirI6S5RwxdMg1k3WUV3S0ilZjuZSdu446nHU/Wt2fofpWRN1NXuQTR6da69psFxqmnp5gUqI358sZ7Y6ZwDV8afGwV0IJUcE8n86dZf8g5fpU9p/x7r9KAP/2Q=="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1097_hu_59e9ae1dd95a0ac9.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1075.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/3289sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AKksBBPFUJo8dqvvr9lIzAQOwH8QIAPvTrPVdNa8ieGRllBJVWTPOPQda9epXhGDkuiPPjSk5JFK20e/vD&amp;#43;5tJGB/iIwv5mlvdLm0&amp;#43;ZYZwm9kD/Kc4GSP6Vume/LeZG87CXJbYrAZB55C/56VQ8QX1vbPas8F18ysq&amp;#43;cMMcHPf8A3q8PC5tUrYlQkkou/wDV/wDgHoVsFGFJuOrOTTTdXUlDaTRk9TKNvBOM80ul2V9/b0fyKJLdxIV&amp;#43;8GA57cYx&amp;#43;Fd3rP3j/wBe4/8AQxWBoX/IyT/9en/tIVtOV9GKKsbEGrxtA7zjTHaDIeOOXZg5P3QRk/hVDWZ01KOKMI1q9uXBVkIBzg46ZHHt&amp;#43;Vc3/wAtpv8Arp/Wul1L/kI3X&amp;#43;//AOyVwQwtKElOKszpdSTVmz//2Q=="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_1075_hu_71287e451f8c66a4.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_0972.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/121sec ISO 32"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AMmzuXsftFlLGY5IGyoYfd9R9M/zFUx5Gq6rPM82FO1H6ZGB/L1q74gubKeyjlmujHqCApjb/rk6HJzyRWbpOmqmhz6g7M0gkwsYOH3c47HI6H/GuWUGvU1crofcaRfteo0qrs3Mu48bV&amp;#43;v1HXNVpdBuG80wI0ht5drooHyrk8nn26VowaVfawRBcGGEoQpUAlz/AI85HGOc56cV9ChEWtSxSOU8sHouQ&amp;#43;Djpg575PtimoNLVnO6jEltxfbnBeM4IJbke2PQ9a05Z4dCjg2Ylilty8qsQGOQpz7Ec1Ttv&amp;#43;Pd/rUXib/Vxf8AXif5CtPiTTHHqdCI4rgQXdpLCVMbPG0gLfNydpwemFx9a5zSrqG38VXjXAkV/JLIJTuycgjqRkEg/XNbGgf8i7af7kn83rm77/ka3/64J/IVEeqDlP/Z"
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_0972_hu_3a4b6de5b7bb85c6.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_0948.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/121sec ISO 50"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AOnsbp7C9ke9e4lTZticncevP06CrUet2V1ONzyxof764/D1rhR4ol3LJOl0u4MEMhDKDjqQAM9u9arSSW&amp;#43;0TW7JlR8wBw3TnrxWVCbUbSNK0U3dE3j/AMR32kW1qNBCt5u4yzcMUwMgYPrz&amp;#43;VUfCvxKiubYxa5GwuF&amp;#43;5JEoCv7MOx/Ci5CXkZEiowXlcnjPvjnFcpo88aSPa3kMLJM5DkY9eue/atru5nZWOzOjrd3MCEBYEQ5Yj36D3wK3UgQgsYlkX8RVa3/494/941ow/wDHr&amp;#43;FYRii2znfFH2GLw7PLJZsfMfySsbbWySMYJ/zxXnd3Yy24WO0t5vKGCrsRknvz35zXoHjL/kXf&amp;#43;39P5Guduf8Ajzg&amp;#43;n/swrSCFJ6H/2Q=="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_0948_hu_f22b49f9bf63f7e6.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_0946.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/193sec ISO 25"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AO4DN90kY7c1P58UKhtxPtXIL4qEih444mHuTUU/im6kIKpCgXnAXOfzrazM7o66W8knJ2RsB60kQaTKqd23rt5Arjrnx5exRbRBbH6qefwzXK6j4n1K/JSa5cRn/lmnyr&amp;#43;Q/rS5mHKiTS7a5SQSXEEpTssYzu&amp;#43;tat1ZGaPMTTQOv8BUspNWrL/Up9KtDvXnOvJM7FSjY5i40i&amp;#43;dxujDj&amp;#43;9kis6TSrxWO61cnPUGu6k&amp;#43;7VKahV5A6SP/2Q=="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_0946_hu_e070cde66a4bce87.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_0941.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/121sec ISO 80"
						

						
					
					&gt;
					&lt;img
						width="450" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAGAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/ANnxNozWWoQXkWRaySbmK9EbuMeh61zb61MPEXkjD2u5U37DwMHcfrnHbtXevrcU0sCxRSNtkzgnrwR/WvP7m4/4rK4n8pgn2tmGQTkbvb2qXFczRSk7I6HQ9J/tbWJrhnL2iEbjnhsfwgdvf6V1f/CP6V/z6D/vo1l3PihLeeZ7eEHzSADJ2wPQfWq//CYXP9yH/vj/AOvWlOMbaq5EpSvoyhfaJJcRG2hmUTOQNwypGPm6/hXLnwxrzeIPIezP2PAJnDNzzjj&amp;#43;fTpzXbQeILDcFFvcDndueIDHuef1qY&amp;#43;IbJMASF8cHBBP865nZybZstkkZE&amp;#43;gu0pt1ugGX5lLKQOfz9Ki/wCEau/&amp;#43;fuH/AMe/&amp;#43;JrbbX7GPLvCSrA5YAZwPeoP&amp;#43;Eo0b/nlL&amp;#43;dVGVlYlq7P/9k="
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_0941_hu_26c3e29aeeaf16c4.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			&lt;div&gt;
				
				
					
					
				

				
				
					
					
				

				&lt;a href="https://janusworx.com/personal/beautiful-arunachal/images/IMG_0896.JPEG"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8&lt;br/&gt;17/4mm f/1.8 1/121sec ISO 80"
						

						
					
					&gt;
					&lt;img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&amp;#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&amp;#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&amp;#43;Tl5ufo6ery8/T19vf4&amp;#43;fr/2gAMAwEAAhEDEQA/AKmlmSfU1RF&amp;#43;bY2SOePwrJv9bvL/AFGO2dEWKFm/dtySeRnOMiug8OyfZfEdq6oyZDBt7A5BU9Me&amp;#43;K4&amp;#43;bK69KBIAPNf5j2&amp;#43;Y1in7zRo0tzc0ed9P1JguTFKSpGclfQ9vUV0a6m2k6YjRSPEsUC/Lu29B0ql4T09J9SNzOm6KE88kZbAArsLnQbC9gMRQCMkNtwCMg5/zzRH3JNxHUbkkpHD6VcSRanZyy/OsbEICMD7pwOPeub1DT54/ECptWZ5mLFYs4XnnP510Ft/rrX/rqKgm/wCRvi/3D/SjqWopxv5nZaVGdP0dCx3NI4GcYyBn&amp;#43;ufyraguAMEfkKyW/wCQPa/j/wChNV626L9aETU3P//Z"
							
							class="lazy"
							data-src="https://janusworx.com/personal/beautiful-arunachal/images/IMG_0896_hu_ba9d6d9f229b973d.JPEG"
						

						
							
								
							
						
					&gt;
				&lt;/a&gt;
			&lt;/div&gt;
		
	
&lt;/div&gt;
&lt;/div&gt;

&lt;script&gt;
	if (!("HSCGjQuery" in window)) {
		if (!window.jQuery) {
			throw new Error("jQuery is not loaded, hugo-shortcode-gallery wont work without it!");
		}
		window.HSCGjQuery = window.jQuery.noConflict(true);
	}

	
	
	
	
	
	;(function($) {

		$( document ).ready(() =&gt; {
			const gallery = $("#gallery-9b286b7fada66ba39117d3a0cdfb5e2f-2");
			

			
			let swipeboxInstance = null;

			
			
			gallery.on('jg.complete', () =&gt; {
				
					
					
					$(() =&gt; {
						$('.lazy').Lazy({
							visibleOnly: true,
							afterLoad: element =&gt; element.css({filter: "none", transition: "filter 1.0s ease-in-out"})
						});
					});
				

				swipeboxInstance = $('.galleryImg').swipebox(
					$.extend({},
						{ }
					)
				);
			});

			
			gallery.justifiedGallery($.extend(
				{
					rowHeight : "150",
					margins : "5",
					border : 0,
					randomize : false ,
					waitThumbnailsLoad : false,
					lastRow : "justify",
					captions : false,
					
					
				},
				{ }
			));

			
			
		});

	
	
	
	})(window.HSCGjQuery)
&lt;/script&gt;

&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;When you finally see the &lt;a href="https://www.youtube.com/watch?v=10TV1beD_iQ" target="_blank" rel="noreferrer"&gt;Aurora Borealis&lt;/a&gt; thiry four years, after you first learned about them, nothing else will ever come close :)&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Books! Do What You Will, With Them</title><link>https://janusworx.com/reading/books-do-what-you-will/</link><pubDate>Sun, 03 Mar 2024 05:45:00 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/reading/books-do-what-you-will/</guid><description>&lt;p&gt;&lt;br&gt;

&lt;a href="https://janusworx.com/images/2024/books-do-what-you-will.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/books-do-what-you-will-s.jpg" alt="lots of books in three shelves" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;My bookshelf. Click for a larger pic.&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;


&lt;h1 class="relative group"&gt;You are allowed
 &lt;div id="you-are-allowed" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#you-are-allowed" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h1&gt;
&lt;p&gt;nay, &lt;em&gt;&lt;strong&gt;encouraged&lt;/strong&gt;&lt;/em&gt; to …&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;buy books you’ll never read&lt;/li&gt;
&lt;li&gt;abandon books halfway through&lt;/li&gt;
&lt;li&gt;read your favorites over and over again&lt;/li&gt;
&lt;li&gt;read ‘easy’ books&lt;/li&gt;
&lt;li&gt;read books you don’t totally understand&lt;/li&gt;
&lt;li&gt;just look at the pictures&lt;/li&gt;
&lt;li&gt;start in the middle&lt;/li&gt;
&lt;li&gt;take notes&lt;/li&gt;
&lt;li&gt;break spines&lt;/li&gt;
&lt;li&gt;read the book after you saw the movie&lt;/li&gt;
&lt;li&gt;skip the boring parts&lt;/li&gt;
&lt;li&gt;keep books out of sentiment&lt;/li&gt;
&lt;li&gt;bring a book everywhere&lt;/li&gt;
&lt;li&gt;read comics&lt;/li&gt;
&lt;li&gt;return books to the library unread&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;The point, my dear reader, is joy.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;— stolen verbatim from &lt;a href="https://www.tumblr.com/ladygreyslibrary/635420511138185216/you-are-allowed" target="_blank" rel="noreferrer"&gt;Lady Grey’s Library&lt;/a&gt; on Tumblr&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Iron Widow</title><link>https://janusworx.com/reading/iron-widow/</link><pubDate>Fri, 01 Mar 2024 09:22:44 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/reading/iron-widow/</guid><description>&lt;p&gt;&lt;br&gt;
&lt;br&gt;

&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/iron-widow.jpg" alt="art of various scenes between a young chinese couple. the art is all fantasy. with vibrant colours. top one shows a heartfelt conversation. middle one is a lovey dovey one. third one is them standing ready for battle in action poses" /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;courtesy, &lt;a href="https://xiranjayzhao.com/index.php/books/" target="_blank" rel="noreferrer"&gt;Xiran Jay Zhao&lt;/a&gt;&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;What happens when you take all the pulpy goodness from &lt;a href="https://en.wikipedia.org/wiki/Kyunki_Saas_Bhi_Kabhi_Bahu_Thi" target="_blank" rel="noreferrer"&gt;Indian soaps&lt;/a&gt; and &lt;a href="https://en.wikipedia.org/wiki/My_Love_from_the_Star" target="_blank" rel="noreferrer"&gt;K-dramas&lt;/a&gt;, mash it up with &lt;a href="https://en.wikipedia.org/wiki/Pacific_Rim_%28film%29" target="_blank" rel="noreferrer"&gt;Pacific Rim&lt;/a&gt; and &lt;a href="https://en.wikipedia.org/wiki/Robotech_%28TV_series%29" target="_blank" rel="noreferrer"&gt;Robotech&lt;/a&gt;, infuse it with a lot of authentic &lt;a href="https://en.wikipedia.org/wiki/Wu_Zetian" target="_blank" rel="noreferrer"&gt;Chinese history&lt;/a&gt;, and aim it at teens (err, young adults)?&lt;/p&gt;
&lt;p&gt;You get &lt;em&gt;&lt;strong&gt;&lt;a href="https://www.penguinrandomhouse.com/books/659753/iron-widow-by-xiran-jay-zhao/" target="_blank" rel="noreferrer"&gt;Iron Widow&lt;/a&gt;&lt;/strong&gt;&lt;/em&gt; by Xiran Jay Zhao, that’s what!&lt;/p&gt;
&lt;p&gt;I wish someone takes Indian history and creates such awesome fictional worlds from them.&lt;br&gt;
This was such a crazy, rollicking ride! I cannot wait for their next.&lt;/p&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;


&lt;h3 class="relative group"&gt;My highlights, from the book
 &lt;div id="my-highlights-from-the-book" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#my-highlights-from-the-book" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;blockquote&gt;&lt;p&gt;In hindsight, I was such a fool to have assumed Qieluo would stand by me just because she’s also female.&lt;br&gt;
It was my grandmother who crushed my feet in half.&lt;br&gt;
It was my mother who encouraged me and Big Sister to offer ourselves up as concubines so our brother could afford a future bride.&lt;br&gt;
It was always the village aunties who’d sit around gossiping about which girl hadn’t been married off yet, despite complaining nonstop about their own husbands. And then they’d congratulate new mothers for being “blessed” to have a boy, despite being female themselves.&lt;/p&gt;
&lt;p&gt;How do you take the fight out of half the population and render them willing slaves? You tell them they’re meant to do nothing but serve from the minute they’re born. You tell them they’re weak. You tell them they’re prey.&lt;br&gt;
You tell them over and over, until it’s the only truth they’re capable of living.&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Babel</title><link>https://janusworx.com/reading/babel/</link><pubDate>Thu, 29 Feb 2024 09:12:29 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/reading/babel/</guid><description>&lt;p&gt;&lt;br&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/babel.jpg" alt="cover of the book, Babel. A greyscale image with lots of medieval line art in the back depicting old England, with the word Babel in a decorative fond running down the middle" /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;image courtesy, &lt;a href="https://harpercollins.co.in/product/babel/" target="_blank" rel="noreferrer"&gt;Harper Collins India&lt;/a&gt;&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;Reading Babel, constantly gave me strong déjà vu as I leafed through its pages.&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;br&gt;
Until I realised what I was experiencing was an author enjoying their words, their lines, their exquisite craft. Where words themselves crawl into your mind, and say yes, we are. We will tell you this story. You need not make any effort here.&lt;br&gt;
Richard Powers’, The Overstory was that way. So was Arundhati Roy’s, The God of Small Things. And Tamysyn Muir, with her Locked Tomb books.&lt;/p&gt;
&lt;p&gt;This is alternate history &lt;a href="https://www.goalhangerpodcasts.com/empire" target="_blank" rel="noreferrer"&gt;Empire&lt;/a&gt;. The British still rule the world, but here they do so, on the strength of magic, silver-work and &lt;em&gt;&lt;strong&gt;words and language.&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;
Kuang then uses all that heft to bash our brains in.&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;br&gt;
There’s Robin and Ramy and Victoire and Letty and it’s them against the world&lt;sup id="fnref:3"&gt;&lt;a href="#fn:3" class="footnote-ref" role="doc-noteref"&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;This was one of those rare books&lt;sup id="fnref:4"&gt;&lt;a href="#fn:4" class="footnote-ref" role="doc-noteref"&gt;4&lt;/a&gt;&lt;/sup&gt; where I wanted very little to do with the story and just wanted to lose myself in the world. I wanted to study languages the way they did, and do magic the way they did. The way some of them come to choose violence reminded me of Bhagat and Azad.&lt;/p&gt;
&lt;p&gt;The history’s wonderful.&lt;br&gt;
The way she uses language and words, even more so!&lt;/p&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;


&lt;h3 class="relative group"&gt;My highlights, from the book
 &lt;div id="my-highlights-from-the-book" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#my-highlights-from-the-book" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;blockquote&gt;&lt;p&gt;Inside, the heady wood-dust smell of freshly printed books was overwhelming. If tobacco smelled like this, Robin thought, he’d huff it every day. He stepped towards the closest shelf, hand lifted tentatively towards the books on display, too afraid to touch them – they seemed so new and crisp; their spines were uncracked, their pages smooth and bright. Robin was used to well-worn, waterlogged tomes; even his Classics grammars were decades old. These shiny, freshly bound things seemed like a different class of object, things to be admired from a distance rather than handled and read.&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;‘If you can see?’ The woman raised her voice and overenunciated her every syllable, as if Robin had difficulty hearing. (This had happened often to Robin on the Countess of Harcourt; he could never understand why people treated those who couldn’t understand English as if they were deaf.)&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;‘But that’s impossible for me,’ said Ramy. ‘I have to play a part. Back in Calcutta, we all tell the story of Sake Dean Mahomed, the first Muslim from Bengal to become a rich man in England. He has a white Irish wife. He owns property in London. And you know how he did it? He opened a restaurant, which failed; and then he tried to be hired as a butler or valet, which also failed. And then he had the brilliant idea of opening a shampoo house in Brighton.’ Ramy chuckled. ‘Come and get your healing vapours! Be massaged with Indian oils! It cures asthma and rheumatism; it heals paralysis. Of course, we don’t believe that at home. But all Dean Mahomed had to do was give himself some medical credentials, convince the world of this magical Oriental cure, and then he had them eating out of the palm of his hand. So what does that tell you, Birdie? If they’re going to tell stories about you, use it to your advantage. The English are never going to think I’m posh, but if I fit into their fantasy, then they’ll at least think I’m royalty.’&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;‘Does Mirza really mean “prince”?’ Robin asked, after he’d overheard Ramy declare this to a shopkeeper for the third time.&lt;br&gt;
‘Sure. Well, really, it’s a title – it’s derived from the Persian Amīrzādeh, but “prince” comes close enough.’&lt;br&gt;
‘Then are you—?’&lt;br&gt;
‘No.’ Ramy snorted. ‘Well. Perhaps once. That’s the family story, anyhow; my father says we were aristocrats in the Mughal court, or something like that. But not anymore.’&lt;br&gt;
‘What happened?’&lt;br&gt;
Ramy gave him a long look. ‘The British, Birdie. Keep up.’&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;After all, we’re here to make the unknown known, to make the other familiar. We’re here to make magic with words.’&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;‘Which seems right to you? Do we try our hardest, as translators, to render ourselves invisible? Or do we remind our reader that what they are reading was not written in their native language?’&lt;br&gt;
‘That’s an impossible question,’ said Victoire. ‘Either you situate the text in its time and place, or you bring it to where you are, here and now. You’re always giving something up.’&lt;br&gt;
‘Is faithful translation impossible, then?’ Professor Playfair challenged. ‘Can we never communicate with integrity across time, across space?’&lt;br&gt;
‘I suppose not,’ Victoire said reluctantly.&lt;br&gt;
‘But what is the opposite of fidelity?’ asked Professor Playfair. He was approaching the end of this dialectic; now he needed only to draw it to a close with a punch. ‘Betrayal. Translation means doing violence upon the original, means warping and distorting it for foreign, unintended eyes. So then where does that leave us? How can we conclude, except by acknowledging that an act of translation is then necessarily always an act of betrayal?’&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;we can think of etymology as an exercise in tracing how far a word has strayed from its roots. For they travel marvellous distances, both literally and metaphorically.’ He looked suddenly at Robin. ‘What’s the word for a great storm in Mandarin?’&lt;br&gt;
Robin gave a start. ‘Ah – fēngbào?’&lt;br&gt;
‘No, give me something bigger.’&lt;br&gt;
‘Táifēng?’&lt;br&gt;
‘Good.’ Professor Lovell pointed to Victoire. ‘And what weather patterns are always drifting across the Caribbean?’&lt;br&gt;
‘Typhoons,’ she said, then blinked. ‘Taifeng? Typhoon? How—’&lt;br&gt;
‘We start with Greco-Latin,’ said Professor Lovell. ‘Typhon was a monster, one of the sons of Gaia and Tartarus, a devastating creature with a hundred serpentine heads. At some point he became associated with violent winds, because later the Arabs started using tūfān to describe violent, windy storms. From Arabic it hopped over to Portuguese, which was brought to China on explorers’ ships.’&lt;br&gt;
‘But táifēng isn’t just a loanword,’ said Robin. ‘It means something in Chinese – tái is great, and fēng is wind–’&lt;br&gt;
‘And you don’t think the Chinese could have come up with a transliteration that had its own meaning?’ asked Professor Lovell. ‘This happens all the time. Phonological calques are often semantic calques as well. Words spread. And you can trace contact points of human history from words that have uncannily similar pronunciations. Languages are only shifting sets of symbols – stable enough to make mutual discourse possible, but fluid enough to reflect changing social dynamics.&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;And the influences on English were so much deeper and more diverse than they thought. Chit came from the Marathi chitti, meaning ‘letter’ or ‘note’. Coffee had made its way into English by way of Dutch (koffie), Turkish (kahveh), and originally Arabic (qahwah). Tabby cats were named after a striped silk that was in turn named for its place of origin: a quarter of Baghdad named al-‘Attābiyya. Even basic words for clothes all came from somewhere. Damask came from cloth made in Damascus; gingham came from the Malay word genggang, meaning ‘striped’; calico referred to Calicut in Kerala, and taffeta, Ramy told them, had its roots in the Persian word tafte, meaning ‘a shiny cloth’.&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;English did not just borrow words from other languages; it was stuffed to the brim with foreign influences, a Frankenstein vernacular. And Robin found it incredible, how this country, whose citizens prided themselves so much on being better than the rest of the world, could not make it through an afternoon tea without borrowed goods.&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;‘The Germans have this lovely word, Sitzfleisch,’ Professor Playfair said pleasantly when Ramy protested that they had over forty hours of reading a week. ‘Translated literally, it means “sitting meat”. Which all goes to say, sometimes you need simply to sit on your bottom and get things done.&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;He waved a hand, gesturing at an invisible map. ‘It’s junctures like that where we have control. If we push in the right spots – if we create losses where the Empire can’t stand to suffer them – then we’ve moved things to the breaking point. Then the future becomes fluid, and change is possible. History isn’t a premade tapestry that we’ve got to suffer, a closed world with no exit. We can form it. Make it. We just have to choose to make it.’&lt;sup id="fnref:5"&gt;&lt;a href="#fn:5" class="footnote-ref" role="doc-noteref"&gt;5&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;Oxford, and Babel by extension, were, at their roots, ancient religious institutions, and for all their contemporary sophistication, the rituals that comprised university life were still based in medieval mysticism. Oxford was Anglicanism was Christianity, which meant blood, flesh, and dirt.*&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;‘The British aren’t going to invade with English troops. They’re going to invade with troops from Bengal and Bombay. They’re going to have sepoys fight the Afghans, just like they had sepoys fight and die for them at Irrawaddy, because those Indian troops have the same logic you do, which is that it’s better to be a servant of the Empire, brutal coercion and all, than to resist. Because it’s safe. Because it’s stable, because it lets them survive. And that’s how they win, brother. They pit us against each other. They tear us apart.’&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;‘I don’t think I’ll ever forget what I saw.’ He rested his elbows against the bridge and sighed. ‘Rows and rows of flowers. A whole ocean of them. They’re such bright scarlet that the fields look wrong, like the land itself is bleeding. It’s all grown in the countryside. Then it gets packed and transported to Calcutta, where it’s handed off to private merchants who bring it straight here. The two most popular opium brands here are called Patna and Malwa. Both regions in India. From my home straight to yours, Birdie. Isn’t that funny?’ Ramy glanced sideways at him. ‘The British are turning my homeland into a narco-military state to pump drugs into yours. That’s how this empire connects us.’&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;Free trade. This was always the British line of argument – free trade, free competition, an equal playing field for all. Only it never ended up that way, did it? What ‘free trade’ really meant was British imperial dominance, for what was free about a trade that relied on a massive build-up of naval power to secure maritime access? When mere trading companies could wage war, assess taxes, and administer civil and criminal justice?&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;Robin saw a great spider’s web in his mind then. Cotton from India to Britain, opium from India to China, silver becoming tea and porcelain in China, and everything flowing back to Britain. It sounded so abstract – just categories of use, exchange, and value – until it wasn’t; until you realized the web you lived in and the exploitations your lifestyle demanded, until you saw looming above it all the spectre of colonial labour and colonial pain.&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;My point being, abolition happened because white people found reasons to care – whether those be economic or religious. You just have to make them think they came up with the idea themselves. You can’t appeal to their inner goodness. I have never met an Englishman I trusted to do the right thing out of sympathy.’&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;‘Eventually.’&lt;br&gt;
Anthony laughed gently. ‘Do you think abolition was a matter of ethics? No, abolition gained popularity because the British, after losing America, decided that India was going to be their new golden goose. But cotton, indigo, and sugar from India weren’t going to dominate the market unless France could be edged out, and France would not be edged out, you see, as long as the British slave trade was making the West Indies so very profitable for them.’&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;Colonialism is not a machine capable of thinking, a body endowed with reason. It is naked violence and only gives in when confronted with greater violence.&lt;br&gt;
— FRANTZ FANON, The Wretched of the Earth, trans. Richard Philcox&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;‘It’s so odd,’ Robin said. Back then they’d already passed the point of honesty; they spoke to one another unfiltered, unafraid of the consequences. ‘It’s like I’ve known you forever.’
‘Me too,’ Ramy said.
‘And that makes no sense,’ said Robin, drunk already, though there was no alcohol in the cordial. ‘Because I’ve known you for less than a day, and yet . . .’
‘I think,’ said Ramy, ‘it’s because when I speak, you listen.’
‘Because you’re fascinating.’
‘Because you’re a good translator.’ Ramy leaned back on his elbows. ‘That’s just what translation is, I think. That’s all speaking is. Listening to the other and trying to see past your own biases to glimpse what they’re trying to say. Showing yourself to the world, and hoping someone else understands.’&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;how could there ever be an Adamic language? The thought now made him laugh. There was no innate, perfectly comprehensible language; there was no candidate, not English, not French, that could bully and absorb enough to become one. Language was just difference. A thousand different ways of seeing, of moving through the world. No; a thousand worlds within one. And translation – a necessary endeavour, however futile, to move between them.&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;ok, I swiped on my Elipsa. But you get the idea!&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;in a good way&amp;#160;&lt;a href="#fnref:2" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:3"&gt;
&lt;p&gt;a lot like Bardugo’s, Six of Crows&amp;#160;&lt;a href="#fnref:3" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:4"&gt;
&lt;p&gt;the only other one for me, was The Lord of the Rings. I suspect Kuang, just like Tolkien, had the words and the language and the world ready. And then she just when and wrote a book to show some of it.&amp;#160;&lt;a href="#fnref:4" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:5"&gt;
&lt;p&gt;reminds me of Steve Jobs, and &lt;a href="https://www.youtube.com/watch?v=kYfNvmF0Bqw" target="_blank" rel="noreferrer"&gt;his dent in the universe&lt;/a&gt;.&amp;#160;&lt;a href="#fnref:5" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Note to Self Footnotes Using Littlefoot.js</title><link>https://janusworx.com/work/note-to-self-footnotes-using-littlefoot.js/</link><pubDate>Wed, 28 Feb 2024 08:10:36 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/note-to-self-footnotes-using-littlefoot.js/</guid><description>&lt;p&gt;&lt;br&gt;

&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/footnotes.png" alt="Two feet side by side, with a marker illustration on them. theres a figure 1 on one foot. a small cartoon lion on the other. and a dashed path drawn across one foot to the other, linking them." /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;Courtesy &lt;a href="https://flickr.com/photos/dothegreenthing/7401372664/" target="_blank" rel="noreferrer"&gt;dothegreenthing&lt;/a&gt;, &lt;a href="https://creativecommons.org/licenses/by-nc/2.0/" target="_blank" rel="noreferrer"&gt;CC BY-NC 2.0&lt;/a&gt;, on Flickr&lt;/p&gt;
&lt;/figcaption&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

I have this amazing urge never to leave well enough alone.&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;br&gt;
The blog uses an amazing theme, called &lt;a href="https://adityatelange.github.io/hugo-PaperMod/" target="_blank" rel="noreferrer"&gt;PaperMod&lt;/a&gt;.&lt;br&gt;
And ofcourse, like I said, because I can’t leave well enough alone, I’ve customised it heavily.&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;br&gt;
The fonts are different, there are various kinds of slight colour changes, I bullied &lt;a href="https://github.com/adityatelange" target="_blank" rel="noreferrer"&gt;Aditya&lt;/a&gt; into showing me how to &lt;a href="https://github.com/adityatelange/hugo-PaperMod/issues/62#issuecomment-1375160640" target="_blank" rel="noreferrer"&gt;build a Menu&lt;/a&gt;, there are lots of custom &lt;a href="https://gohugo.io/content-management/shortcodes/" target="_blank" rel="noreferrer"&gt;Hugo shortcodes&lt;/a&gt; and there were footnotes powered by a nifty little Javascript library called &lt;a href="https://littlefoot.js.org/" target="_blank" rel="noreferrer"&gt;littlefoot.js&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Now everything &lt;em&gt;was&lt;/em&gt; fine and dandy.&lt;br&gt;
There are folks who &lt;em&gt;do&lt;/em&gt; leave well enough alone. Their blogs stay up and running for years on end, held together with nothing more than spit and baling wire.&lt;br&gt;
Those folks aren’t me, sadly. Aditya keeps improving the theme and I really wanted the new shiny. &lt;a href="https://github.com/adityatelange/hugo-PaperMod/releases/tag/v7.0" target="_blank" rel="noreferrer"&gt;So I went and got it.&lt;/a&gt;&lt;br&gt;
And everything broke!&lt;br&gt;
I got weird artifacts. RSS broke. Fonts broke. Footnotes broke.&lt;sup id="fnref:3"&gt;&lt;a href="#fn:3" class="footnote-ref" role="doc-noteref"&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;I’ve managed to put everything back together, over the past week, and I &lt;em&gt;just&lt;/em&gt; got footnotes working again yesterday.&lt;br&gt;
So a few notes to myself, on what to do, when I break it again.&lt;sup id="fnref:4"&gt;&lt;a href="#fn:4" class="footnote-ref" role="doc-noteref"&gt;4&lt;/a&gt;&lt;/sup&gt;&lt;br&gt;
Footnotes today, and the rest later …&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

So here goes,&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The litlefoot.js repo has &lt;a href="https://github.com/goblindegook/littlefoot#usage" target="_blank" rel="noreferrer"&gt;excellent documentation&lt;/a&gt;. That’s where you pulled everything from (for when you wonder, just &lt;em&gt;how&lt;/em&gt; you figured all the CSS out)&lt;/li&gt;
&lt;li&gt;You download a static copy with a &lt;code&gt;npm install --save littlefoot&lt;/code&gt; and then stick it into Hugo’s static folder&lt;/li&gt;
&lt;li&gt;Copy the &lt;code&gt;extend_head.html&lt;/code&gt; from the theme’s &lt;code&gt;layout/partials&lt;/code&gt; into your own. You should already have an &lt;code&gt;extend_footer.html&lt;/code&gt; since you put in PaperMod’s hamburger stuff in there.&lt;/li&gt;
&lt;li&gt;Adapt the &lt;a href="https://github.com/goblindegook/littlefoot#usage-from-a-cdn" target="_blank" rel="noreferrer"&gt;Usage from a CDN&lt;/a&gt; step to directly access it from &lt;code&gt;/littlefoot/dist/…&lt;/code&gt; instead of &lt;a href="https://unpkg.com/" target="_blank" rel="noreferrer"&gt;UNPKG&lt;/a&gt;. Put the CSS link into your &lt;code&gt;extend_head.html&lt;/code&gt; and the JS into &lt;code&gt;extend_footer.html&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;We want the footnotes to be numbers, rather than floating ellipses. So modify the default (blank) script call in &lt;code&gt;extend_footer.html&lt;/code&gt;, to the stuff below. This is verbatim from the docs.&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-html" data-lang="html"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;script&lt;/span&gt; &lt;span class="na"&gt;type&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;application/javascript&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;littlefoot&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;littlefoot&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;buttonTemplate&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="sb"&gt;`
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="sb"&gt; &amp;lt;button
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="sb"&gt; aria-label=&amp;#34;Footnote &amp;lt;% number %&amp;gt;&amp;#34;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="sb"&gt; class=&amp;#34;littlefoot__button&amp;#34;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="sb"&gt; id=&amp;#34;&amp;lt;% reference %&amp;gt;&amp;#34;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="sb"&gt; title=&amp;#34;See Footnote &amp;lt;% number %&amp;gt;&amp;#34;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="sb"&gt; /&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="sb"&gt; &amp;lt;% number %&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="sb"&gt; &amp;lt;/button&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="sb"&gt; `&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;script&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;We want to style it a teensy bit, so those styles go into &lt;code&gt;extend_head.html&lt;/code&gt;. For some reason, it does not pick the footnote styling correctly when you put stuff into your normal &lt;code&gt;assets/css/extended/&lt;/code&gt; folder.&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-css" data-lang="css"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="o"&gt;&amp;lt;!&lt;/span&gt;&lt;span class="nt"&gt;--Custom&lt;/span&gt; &lt;span class="nt"&gt;littlefoot&lt;/span&gt; &lt;span class="nt"&gt;styles--&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;style&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;littlefoot&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;		&lt;span class="c"&gt;/*the --attributes come from the littlefoot.js docs*/&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;		&lt;span class="c"&gt;/*Change button background to something that works in both modes*/&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nv"&gt;--button-background-color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mh"&gt;#666&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; 
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;		&lt;span class="c"&gt;/*Change padding to make the button rounder*/&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nv"&gt;--button-padding&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt; &lt;span class="mf"&gt;0.35&lt;/span&gt;&lt;span class="kt"&gt;rem&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;		&lt;span class="c"&gt;/*The footnote ought to be italicised*/&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nv"&gt;--popover-font-style&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;italic&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;		&lt;span class="c"&gt;/*Make the popover work with my theme’s colour scheme*/&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nv"&gt;--popover-background-color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nf"&gt;var&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;--&lt;/span&gt;&lt;span class="n"&gt;theme&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nv"&gt;--popover-text-color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nf"&gt;var&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;--&lt;/span&gt;&lt;span class="n"&gt;primary&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c"&gt;/*the oldstyle numerals used everywhere else, don’t look good here
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="c"&gt;		Neither do they align properly in the box.
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="c"&gt;		So switch them to normal*/&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;		&lt;span class="k"&gt;font-variant-numeric&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;normal&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;		&lt;span class="c"&gt;/*Italic numerals for the footnotes*/&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;font-style&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;italic&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;littlefoot__button&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;		&lt;span class="c"&gt;/*very subjective. 
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="c"&gt;		try to get the numerals centred as much as I can.*/&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;line-height&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;vertical-align&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;middle&lt;/span&gt;&lt;span class="cp"&gt;!important&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="o"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;style&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;Et voilà! Footnotes galore!&lt;/p&gt;

&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/footnotes-2.png" alt="screenshot of a blogpost, with footnotes" /&gt;
 
 
 &lt;/figure&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;It looks a little weird, a little like a billie goat walked across my post, pooping pellets across the page.&lt;sup id="fnref:5"&gt;&lt;a href="#fn:5" class="footnote-ref" role="doc-noteref"&gt;5&lt;/a&gt;&lt;/sup&gt;&lt;br&gt;
But it is my kind of weird now.&lt;br&gt;
And I love it :)&lt;/p&gt;
&lt;/figcaption&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;what we in the Mumbaiyya vulgar, would call, “Gaand mein keeda”.&lt;br&gt;
&lt;em&gt;&lt;strong&gt;Please for the love of God, don’t look that up. Very not safe.&lt;/strong&gt;&lt;/em&gt;&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;Heavily, as in heavily for a guy who doesn’t quite know what he’s doing.&amp;#160;&lt;a href="#fnref:2" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:3"&gt;
&lt;p&gt;All my fault obviously, with all the custom stuff. Nothing to do with the theme proper.&amp;#160;&lt;a href="#fnref:3" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:4"&gt;
&lt;p&gt;in the &lt;em&gt;&lt;strong&gt;far, far, far, future&lt;/strong&gt;&lt;/em&gt;; future Jason! Not any time soon, you hear!&amp;#160;&lt;a href="#fnref:4" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:5"&gt;
&lt;p&gt;“Pooping pellets on the posted page”, Now there’s a tongue twister 😂&amp;#160;&lt;a href="#fnref:5" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Moving Audio Library to Flac &amp; MP3 Formats</title><link>https://janusworx.com/personal/moving-audio-library-to-flac-mp3/</link><pubDate>Tue, 27 Feb 2024 08:47:52 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/moving-audio-library-to-flac-mp3/</guid><description>&lt;p&gt;&lt;br&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/audio-file-converting-01-shaping-metal-s.jpg" alt="a hot metal rod being shaped into an ornament/tool" /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;A piece of metal being converted into something useful.&lt;br&gt;
Image courtesy, &lt;a href="https://unsplash.com/photos/person-holding-black-metal-pipe-4AT3mZMuFuI?utm_content=creditCopyText&amp;amp;utm_medium=referral&amp;amp;utm_source=unsplash" target="_blank" rel="noreferrer"&gt;Jonny Gios&lt;/a&gt;, &lt;a href="https://unsplash.com/license" target="_blank" rel="noreferrer"&gt;Unsplash License&lt;/a&gt;, on Unsplash&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;I thought I was set with my audio jukebox when I &lt;em&gt;finally&lt;/em&gt; finished collecting and digitising all my tapes, records&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt; and cds and then tagging, sorting and organising my files in or around the late noughties.&lt;br&gt;
When I began doing all that in the mid noughties, I was comfortably ensconced in the Apple/iTunes ecosystem, so all my files were in various MPEG-4 formats.&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;And the one big thing I missed, was letting a track have multiples genres or multiple artists. I wanted to be able to search for a song in each artist’s name i.e. the song ought to be listed as an entry under each singer’s name (Shibani Dandekar &lt;em&gt;and&lt;/em&gt; Zoya Akhtar &lt;em&gt;and&lt;/em&gt; Ankur Tewari &lt;em&gt;and&lt;/em&gt; SEL) in the jukebox and also have it listed / searchable under multiple genres (remove Bollywood, but be able to add IndiPop &lt;em&gt;and&lt;/em&gt; Oldies). I always thought that wasn’t possible. A decade passed since. I’ve moved homes to &lt;a href="https://www.linuxmint.com/" target="_blank" rel="noreferrer"&gt;Mint&lt;/a&gt; and the .deb ecosystem in the meanwhile. And it still never occured to me to re-evaluate my choice of audio formats, despite this being a constant thorn in my side. I still thought it wasn’t possible. Look at what happens when I try to add a genre to a song in &lt;a href="https://quodlibet.readthedocs.io/" target="_blank" rel="noreferrer"&gt;Quod Libet&lt;/a&gt; …&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;a href="https://janusworx.com/images/2024/audio-file-converting-02.png" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/audio-file-converting-02.png" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;Click to enlarge&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;Until, when I read that message more closely, recently. It wasn’t telling me that it wasn’t possible, just that I was a dummkopf&lt;sup id="fnref:3"&gt;&lt;a href="#fn:3" class="footnote-ref" role="doc-noteref"&gt;3&lt;/a&gt;&lt;/sup&gt; with my choice of audio formats all those years ago. &lt;em&gt;These&lt;/em&gt; files did not support multiple values for genre, but was it possible that other formats did? Spoiler, of course, they did!&lt;br&gt;
A quick search revealed both mp3 as well as flac supported this.&lt;/p&gt;
&lt;p&gt;I decided to try this with one of my recent songs.&lt;br&gt;
I use ffmpeg to convert &lt;a href="https://youtu.be/7YStGjns4Go" target="_blank" rel="noreferrer"&gt;Plum Pudding&lt;/a&gt;.&lt;br&gt;
&lt;code&gt;ffmpeg -i &amp;quot;05 Plum Pudding.m4a&amp;quot; -c:a flac &amp;quot;05 Plum Pudding.flac&amp;quot;&lt;/code&gt;&lt;br&gt;
And tada! A quick metadata edit in Quod Libet and I had multiple artist and genre entries! 🎉🎉🎉&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;a href="https://janusworx.com/images/2024/audio-file-converting-03.png" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/audio-file-converting-03.png" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;Click to enlarge&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;Sigh! I’m both happy and a bit chagrined.&lt;br&gt;
I can haz music the way I want it organised and tagged, but I’m looking at weeks/months of work now 😂&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;Thank you daddy&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;lossless and lossy m4a files.&amp;#160;&lt;a href="#fnref:2" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:3"&gt;
&lt;p&gt;a dummkopf with the benefit of hindsight that is&amp;#160;&lt;a href="#fnref:3" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Org Mode Narrowing and Widening Buffers</title><link>https://janusworx.com/work/org-mode-narrowing-and-widening-buffers/</link><pubDate>Mon, 26 Feb 2024 09:40:17 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/org-mode-narrowing-and-widening-buffers/</guid><description>&lt;p&gt;tldr: &lt;code&gt;C-x n s&lt;/code&gt; to narrow, &lt;code&gt;C-x n w&lt;/code&gt; to widen&lt;/p&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;Now that life’s getting busier and busier, with lots more things on my plate, ye olde system of writing the day’s tasks down on paper does not work any more. Specially since, I’ve begun logging clock times&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;. Writing them down by hand is a giant pain.&lt;br&gt;
This is what the plan’s begun to look like.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;a href="https://janusworx.com/images/2024/om-orgmode-narrow-widen-1.png" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/om-orgmode-narrow-widen-1.png" alt="a plan of tasks for a mediumish range of time" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;An unwieldy plan.&lt;br&gt;
Click this image or any below, for larger versions&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;I wanted to see, if Org would let me replicate what I did my hand, natively.&lt;br&gt;
Which in a nutshell was to look at the day sheet (on paper) for the nitty gritty and my organiser (currently my tasks.org file) for the big picture view.&lt;br&gt;
I bounce between the two often. And discrete focus is something I wanted to keep.&lt;/p&gt;
&lt;p&gt;The focus from wide …
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;a href="https://janusworx.com/images/2024/om-narrow-wide-2.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/om-narrow-wide-2-s.jpg" alt="wide shot of Himalayan range. a valley with a tree line with the mountains in the back and the wide blue sky overheard" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;
&lt;/p&gt;
&lt;p&gt;to narrow. And back …
&lt;a href="https://janusworx.com/images/2024/om-narrow-wide-1.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/om-narrow-wide-1-s.jpg" alt="a yellow Moss Rose" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;
&lt;/p&gt;
&lt;p&gt;&lt;a href="https://orgmode.org/worg/orgcard.html" target="_blank" rel="noreferrer"&gt;A bit of searching&lt;/a&gt; and this is the result! Woohoo!&lt;/p&gt;
&lt;p&gt;&lt;a href="https://janusworx.com/images/2024/om-orgmode-narrow-widen-2.png" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/om-orgmode-narrow-widen-2.png" alt="the plan is now scoped to just today" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;
&lt;/p&gt;
&lt;p&gt;Like I mentioned above, I hit &lt;code&gt;C-x n s&lt;/code&gt; next to my day’s headline to narrow the scope to just today. And a &lt;code&gt;C-x n w&lt;/code&gt; gets me back to the thirty thousand foot view.&lt;br&gt;
I think of them as, &lt;em&gt;s&lt;/em&gt; for slim and &lt;em&gt;w&lt;/em&gt; for wide, to keep them straight in my head.&lt;br&gt;
I’m intuiting this is Org’s &lt;a href="https://orgmode.org/manual/Sparse-Trees.html" target="_blank" rel="noreferrer"&gt;Sparse Tree&lt;/a&gt; Magic at play here. But learning that wizardry is a thing for another day.&lt;/p&gt;
&lt;p&gt;The important bit for me, is that I can focus when I working, without getting distracted.&lt;br&gt;
And then when I need to, zoom out to review what progress looks like and make changes, if I need to.&lt;/p&gt;
&lt;p&gt;I feel a bit sad though. I’ve given up &lt;a href="https://janusworx.com/blog/the-kobo-elipsa-2e-six-months-later/" &gt;book notes&lt;/a&gt; on paper. I’m giving up planning my day on paper. It feels like I’m losing something tangible. I miss paper.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;I hope to use these, to objectively measure where my time is &lt;em&gt;&lt;strong&gt;really&lt;/strong&gt;&lt;/em&gt; going&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Note to Self, Bookmark Your Work, Coda</title><link>https://janusworx.com/work/bookmark-your-work-coda/</link><pubDate>Sun, 25 Feb 2024 10:24:45 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/bookmark-your-work-coda/</guid><description>&lt;br&gt;

&lt;p&gt;&lt;a href="https://janusworx.com/images/2024/bookmark-coda-important-day-liniers.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/bookmark-coda-important-day-liniers.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;courtesy &lt;a href="https://comicskingdom.com/Macanudo/about" target="_blank" rel="noreferrer"&gt;Liniers&lt;/a&gt;, &lt;a href="https://comicskingdom.com/Macanudo/2024-02-24" target="_blank" rel="noreferrer"&gt;Comics Kingdom&lt;/a&gt;&lt;br&gt;
click to enlarge&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;&lt;a href="https://janusworx.com/blog/bookmark-your-work/" &gt;With all the hullabaloo yesterday&lt;/a&gt;, on how you’d go about organising your day, and things to let go of, and marking your place, I forgot the overarching &lt;a href="https://janusworx.com/tags/notetoself/" &gt;Note To Self.&lt;/a&gt;&lt;br&gt;
Please remember. &lt;em&gt;Never lose sight of what’s important.&lt;/em&gt;&lt;br&gt;
Never forget &lt;em&gt;why&lt;/em&gt; you’re doing all of this.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Note to Self, Bookmark Your Work</title><link>https://janusworx.com/work/bookmark-your-work/</link><pubDate>Sat, 24 Feb 2024 08:34:05 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/bookmark-your-work/</guid><description>&lt;div style="font-size: 85%; "&gt;
&lt;p&gt;&lt;em&gt;This started with a note to self on leaving breadcrumbs, and ended with a stream of consciousness journey on how I reached this conclusion. So what I’m trying to say, in a slightly rambling manner, is that this is a slightly incoherent, rambling post.&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/bookmark.jpg" alt="A bookmark with the text on it, jocularly warning the reader, “The next page might be odd”" /&gt;
 
 
 &lt;/figure&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;Courtesy, &lt;a href="https://flic.kr/p/A5WU35" target="_blank" rel="noreferrer"&gt;Delgrosso&lt;/a&gt;, &lt;a href="https://creativecommons.org/licenses/by-nc-nd/2.0/" target="_blank" rel="noreferrer"&gt;CC BY-NC-ND 2.0&lt;/a&gt;, on Flickr&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;I’m running my days now to slow, daily, consistent tiny amounts of progress.&lt;br&gt;
And I am seeing results. When there are so many demands on my time, prioritising them and then doing them slowly yet consistently is yielding fruit.&lt;br&gt;
While I certainly enjoy the deep dive, full of focus, lost in work sessions a lot more, I have too much life happening to allocate that kind of time and attention to everything.&lt;br&gt;
The first thing I did, when I kinda-sorta revamped the way I went about my days&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;, was to &lt;a href="https://www.artofmanliness.com/character/advice/via-negativa-adding-to-your-life-by-subtracting/" target="_blank" rel="noreferrer"&gt;drop as many hot potatoes&lt;/a&gt; as I could, and then &lt;a href="https://www.linkedin.com/learning/getting-things-done/do-delegate-defer" target="_blank" rel="noreferrer"&gt;d-d-d&lt;/a&gt;-ed all the small yet important things in my life.&lt;br&gt;
And then came to the sobering realisation that the rest of life just &lt;em&gt;had&lt;/em&gt; to be done and dealt with. Even things I don’t like.&lt;/p&gt;
&lt;p&gt;A couple of pieces then had to fall into place, before I gained some semblance of sanity and progress.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I can’t do it all. Some things, important things even, will fall through the cracks. Somethings that I &lt;em&gt;really&lt;/em&gt; want to do, will get pushed to someday/maybe and some will just never get done. I have to make my peace with it.&lt;/li&gt;
&lt;li&gt;Knowing what I am giving up, the things that I &lt;em&gt;am&lt;/em&gt; doing? They better be worth it.&lt;/li&gt;
&lt;li&gt;Making the time to think this through, and having mental muscle to &lt;em&gt;do&lt;/em&gt; the thinking&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt; helped.&lt;/li&gt;
&lt;li&gt;Everything does not have to be good and perfect. Good enough, is good enough.&lt;/li&gt;
&lt;li&gt;Yes, stuff is hard and unpleasant, but then you have a blessed life. There are so many people with hard lives. Suck it up. And go do something about it. Deal with it. Leaving stuff unattended in the recesses of your mind, is a sure way to rust and ruin.&lt;sup id="fnref:3"&gt;&lt;a href="#fn:3" class="footnote-ref" role="doc-noteref"&gt;3&lt;/a&gt;&lt;/sup&gt;. At the same time, while you are hard and focussed on the work, be kind to yourself. Find that balance.&lt;/li&gt;
&lt;li&gt;Alright, mentally set. Now how do I go about the &lt;em&gt;doing?&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;By doing as much or as little as you can, depending on how you prioritise it.&lt;/li&gt;
&lt;li&gt;By doing it &lt;em&gt;consistently&lt;/em&gt;. Set a schedule. Hit it.&lt;/li&gt;
&lt;li&gt;If you think you don’t want to do it, do 10m regardless.&lt;sup id="fnref:4"&gt;&lt;a href="#fn:4" class="footnote-ref" role="doc-noteref"&gt;4&lt;/a&gt;&lt;/sup&gt; And then move on.&lt;sup id="fnref:5"&gt;&lt;a href="#fn:5" class="footnote-ref" role="doc-noteref"&gt;5&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;If interrupted, deal with the interruption. Come back. And continue.&lt;/li&gt;
&lt;li&gt;Dealing with interruptions does not mean giving in to it. It means figuring out just what it is, and figuring out what to do about it. Most stuff can be jotted down and scheduled for later. Make sure the significant folk in your life know what you are up to, so that they know when they can expect you to be present and when you are off doing your own thing.&lt;sup id="fnref:6"&gt;&lt;a href="#fn:6" class="footnote-ref" role="doc-noteref"&gt;6&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;Doing stuff this way is &lt;em&gt;slow&lt;/em&gt;. And that’s ok. If your life permitted focussed deep work, you’d be doing it. But that’s not how it is. So find islands of focus. And do the best you can.&lt;/li&gt;
&lt;li&gt;Do the best you can, does not mean going all out. Slow, sure, steady. That is your drumbeat. Slow, sure, steady. Unflustered. Calm. Measured.&lt;/li&gt;
&lt;/ol&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;So what happens once you do this? And what hiccoughs did you run into? And what do you do about it?&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Stuff gets done! It doesn’t look like this ought to work, but it does.&lt;/li&gt;
&lt;li&gt;Leaving stuff undone, putting things down for the day, causes lots of mental turmoil.&lt;/li&gt;
&lt;li&gt;Also whenever you go back to stuff, there’s a lot of going back before your minds grasps where it was at, and only then does it go forth.&lt;/li&gt;
&lt;li&gt;And that brings me to the crux of why I began writing this dastardly note in the first place.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;&lt;strong&gt;Log. Summarise. Review!&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;
1. Log how long you take for your tasks. Don’t judge yourself. Just dispassionately do it.&lt;br&gt;
2. Every time you think you’re done with something for the time being and are putting it down? Spend the time to write down what you did and what future you needs to be doing. Create bookmarks. Give directions. Do this no matter how tired you are. No matter how shitty the note.&lt;br&gt;
3. Review. This is the most important bit. Review at regular intervals and at various depths.&lt;sup id="fnref:7"&gt;&lt;a href="#fn:7" class="footnote-ref" role="doc-noteref"&gt;7&lt;/a&gt;&lt;/sup&gt; And only then make your plans accordingly. Daily time logging &amp;amp; summarising leads to daily review leads to a better sense of what is done, how far you’ve come, what to change, where to swerve, what to do next, and where to go. Review, gosh darn it. Review!&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;It’s been working well the past three months. It’s reduced a lot of friction, and quite a bit of time. It makes it easy to get into the swing of things.&lt;br&gt;
I’ll come back in six months and write about how it went.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;it was a slow, gradual process.&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;Thank you, meditation practice!&amp;#160;&lt;a href="#fnref:2" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:3"&gt;
&lt;p&gt;oft used phrase in the &lt;a href="https://en.wikipedia.org/wiki/Brandon_Sanderson#Cosmere" target="_blank" rel="noreferrer"&gt;Cosmere&lt;/a&gt;&amp;#160;&lt;a href="#fnref:3" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:4"&gt;
&lt;p&gt;be as foul minded and potty mouthed and grumpy as you want. But &lt;em&gt;&lt;strong&gt;do&lt;/strong&gt;&lt;/em&gt; it.&amp;#160;&lt;a href="#fnref:4" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:5"&gt;
&lt;p&gt;unless you get into the groove.&amp;#160;&lt;a href="#fnref:5" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:6"&gt;
&lt;p&gt;if you are busy doing work all day, then that’s a sign. You need to get your life back into some semblance of balance. It’s ok doing this shit for a measure of time. This cannot be your whole life&amp;#160;&lt;a href="#fnref:6" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:7"&gt;
&lt;p&gt;I’m good at the nitty gritty and the big picture (daily / quarterly reviews). I struggle with the medium term (weekly)&amp;#160;&lt;a href="#fnref:7" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>On Invisible Inequity and Entrenched Privilege (In Open Source and the World)</title><link>https://janusworx.com/personal/on-invisible-inequity-and-entrenched-privilege/</link><pubDate>Fri, 23 Feb 2024 09:27:18 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/on-invisible-inequity-and-entrenched-privilege/</guid><description>
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/rfkuang-carltongibson.jpg" alt="" /&gt;
 
 
 &lt;/figure&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;courtesy, &lt;a href="https://rfkuang.com/about/" target="_blank" rel="noreferrer"&gt;R.F. Kuang&lt;/a&gt; &lt;em&gt;&amp;amp;&lt;/em&gt; &lt;a href="https://noumenal.es/" target="_blank" rel="noreferrer"&gt;Carlton Gibson&lt;/a&gt;&lt;/p&gt;
&lt;/figcaption&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

I was reading R.F. Kuang’s &lt;a href="https://janusworx.com/tags/babel/" &gt;Babel&lt;/a&gt; and watching Carlton Gibson’s &lt;a href="https://www.youtube.com/watch?v=YOZWF86TGmo" target="_blank" rel="noreferrer"&gt;talk on surviving open source&lt;/a&gt;&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt; a few days ago.&lt;br&gt;
They both touch upon ingrained privilege in their book/talk.&lt;br&gt;
The popular proverb urges us to engage with the world as it is, not as we would have it be.&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;br&gt;
But sometimes, we are so caught up that we need other, wiser eyes to see. That’s what Rebecca &amp;amp; Carlton have done for me :)&lt;/p&gt;
&lt;p&gt;Here’s Carlton. I paraphrased the relevant bits &lt;a href="https://youtu.be/YOZWF86TGmo?t=610" target="_blank" rel="noreferrer"&gt;from his talk&lt;/a&gt;. It begins at around the 10m, 10s mark. (all emphases mine.)&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;We’re not getting paid. But we don’t always act like we know that.&lt;br&gt;
We give far more than is reasonable given the fact that it’s a volunteer thing that we are doing&lt;/p&gt;
&lt;p&gt;It has a consequence.&lt;br&gt;
Open Source skews overwhelmingly white, male and English speaking.&lt;br&gt;
The bottom line is that contributing to open source is a privilege that only a few can afford.&lt;br&gt;
We like to think it’s meritocracy. Well, you do the time, you do the hard yards, you work on your project, you get the rewards, but well Sorry! Meritocracy, my arse!&lt;/p&gt;
&lt;p&gt;What’s really going on is that pre-existing economic relations are being reinforced by contributors leveraging the inequality of opportunity that those economic relations provide.&lt;br&gt;
Sorry!&lt;br&gt;
In English.&lt;br&gt;
If you let it, Open Source extracts such a cost; physical, financial, and emotional, that the only folks who can do it are the global rich and of those, only the ones that are either directly supported by, or can make their way around the patriarchy. English speaking, white, men.&lt;/p&gt;
&lt;/blockquote&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;And these series of quotes from &lt;a href="https://harpercollins.co.in/product/babel/" target="_blank" rel="noreferrer"&gt;Babel.&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;‘If you can see?’ The woman raised her voice and overenunciated her every syllable, as if Robin had difficulty hearing. (This had happened often to Robin on the Countess of Harcourt; he could never understand why people treated those who couldn’t understand English as if they were deaf.)&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;Free trade. This was always the British line of argument – free trade, free competition, an equal playing field for all. Only it never ended up that way, did it? What ‘free trade’ really meant was British imperial dominance, for what was free about a trade that relied on a massive build-up of naval power to secure maritime access? When mere trading companies could wage war, assess taxes, and administer civil and criminal justice?&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;My point being, abolition happened because white people found reasons to care – whether those be economic or religious. You just have to make them think they came up with the idea themselves. You can’t appeal to their inner goodness. I have never met an Englishman I trusted to do the right thing out of sympathy.&lt;/p&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;Anthony laughed gently. ‘Do you think abolition was a matter of ethics? No, abolition gained popularity because the British, after losing America, decided that India was going to be their new golden goose. But cotton, indigo, and sugar from India weren’t going to dominate the market unless France could be edged out, and France would not be edged out, you see, as long as the British slave trade was making the West Indies so very profitable for them.’&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=YOZWF86TGmo" target="_blank" rel="noreferrer"&gt;Watch the talk.&lt;/a&gt;&lt;br&gt;
&lt;a href="https://harpercollins.co.in/product/babel/" target="_blank" rel="noreferrer"&gt;Read Babel.&lt;/a&gt;&lt;br&gt;
You’ll be better off, having done both.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;not at the same time. I know I’m cuckoo, just not &lt;em&gt;that&lt;/em&gt; cuckoo.&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;I love this one from Saul Alinsky’s, Rules for Radicals:&lt;br&gt;
&lt;em&gt;“I start from where the world is, as it as, not as I would like it to be. That we accept the world as it is does not in any sense weaken our desire to change it into what we believe it should be–it is necessary to begin where the world is if we are going to change it to what we think it should be. That means working in the system.”&lt;/em&gt;&amp;#160;&lt;a href="#fnref:2" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>When a Book Kicks You Up Your Backside</title><link>https://janusworx.com/personal/when-a-book-kicks-you-up-your-backside/</link><pubDate>Thu, 22 Feb 2024 08:56:29 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/when-a-book-kicks-you-up-your-backside/</guid><description>&lt;p&gt;&lt;br&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/babel-kick-up-the-backside.jpg" alt="cover of the book, Babel. A greyscale image with lots of medieval line art in the back depicting old England, with the word Babel in a decorative fond running down the middle" /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;image courtesy, &lt;a href="https://harpercollins.co.in/product/babel/" target="_blank" rel="noreferrer"&gt;Harper Collins India&lt;/a&gt;&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;Here I was, trying to laze away my day by getting lost in a book, when the book kicks my behind and tells me to go work 😂&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;‘The Germans have this lovely word, &lt;em&gt;&lt;strong&gt;Sitzfleisch&lt;/strong&gt;&lt;/em&gt;,’ Professor Playfair said pleasantly when Ramy protested that they had over forty hours of reading a week.&lt;br&gt;
‘Translated literally, it means “sitting meat”.&lt;br&gt;
Which all goes to say, sometimes you need simply to sit on your bottom and get things done.&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;— &lt;a href="https://janusworx.com/tags/babel/" &gt;R.F. Kuang, Babel&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Publish! Show Your Work! You Don’t Have Leonardo’s Genius or Luck</title><link>https://janusworx.com/personal/publish-you-dont-have-leonardos-genius-or-luck/</link><pubDate>Wed, 21 Feb 2024 20:12:18 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/publish-you-dont-have-leonardos-genius-or-luck/</guid><description>
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/publish-leonardo-da-vinci.jpg" alt="Portrait of an old Leonardo Da Vinci" /&gt;
 
 
 &lt;/figure&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;&lt;a href="https://commons.wikimedia.org/wiki/File:Leonardo_da_Vinci_-_presumed_self-portrait_-_WGA12798.jpg" target="_blank" rel="noreferrer"&gt;Leonardo da Vinci&lt;/a&gt;, Public domain, via Wikimedia Commons&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;The only reason we know that both, an &lt;a href="https://en.wikipedia.org/wiki/Marcus_Aurelius" target="_blank" rel="noreferrer"&gt;emperor&lt;/a&gt; as well as a &lt;a href="https://en.wikipedia.org/wiki/Epictetus" target="_blank" rel="noreferrer"&gt;slave&lt;/a&gt;, both practiced the same &lt;a href="https://en.wikipedia.org/wiki/Stoicism" target="_blank" rel="noreferrer"&gt;philosophy&lt;/a&gt; that inspires &lt;a href="https://en.wikipedia.org/wiki/James_Stockdale" target="_blank" rel="noreferrer"&gt;people&lt;/a&gt; even now in this day and age, is because the former’s &lt;a href="https://en.wikipedia.org/wiki/Meditations" target="_blank" rel="noreferrer"&gt;personal notes&lt;/a&gt; and the latter’s &lt;a href="https://en.wikipedia.org/wiki/Enchiridion_of_Epictetus" target="_blank" rel="noreferrer"&gt;words compiled by a student&lt;/a&gt;, have come down to us through the ages.&lt;/p&gt;
&lt;p&gt;The only reason that Leonardo Da Vinci has such a legacy, is that the few pieces of his work that &lt;em&gt;were&lt;/em&gt; created and displayed, have somehow, miraculously lasted the ravages of the past half century. But so much of his work was &lt;a href="https://en.wikipedia.org/wiki/List_of_works_by_Leonardo_da_Vinci#Manuscripts" target="_blank" rel="noreferrer"&gt;unpublished, stowed away in private journals, never to be seen for centuries&lt;/a&gt;. How much more would we have known, or learnt if only? If only.&lt;/p&gt;
&lt;p&gt;Decades of stunning art, never released. No one knew the genius of &lt;a href="https://www.messynessychic.com/2016/02/18/found-at-auction-the-unseen-photographs-of-a-legend-that-never-was/" target="_blank" rel="noreferrer"&gt;Vivian Maier&lt;/a&gt;, when she was alive.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/publish-vivian-maier.jpg" alt="a street photograph, by Vivian Maier" /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;From John Maloof’s, &lt;a href="https://www.vivianmaier.com/" target="_blank" rel="noreferrer"&gt;Vivian Maier, Maloof Collection&lt;/a&gt;&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;Like &lt;a href="https://kadavy.activehosted.com/index.php?action=social&amp;amp;chash=8b0d268963dd0cfb808aac48a549829f.2700&amp;amp;s=acf2cd918271b2bef311fff84b6fea81" target="_blank" rel="noreferrer"&gt;David Kadavy&lt;/a&gt; writes,&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Finishing what you start is overrated.&lt;br&gt;
[…]&lt;br&gt;
Contrast this with many other things Leonardo never finished. The observations that lie hidden in his notes would have advanced humanity by centuries in the fields of medicine, flight, geology, and more. These sketches and notes weren’t finished – but, most tragically, they weren’t &lt;em&gt;&lt;strong&gt;published.&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;
&lt;em&gt;&lt;strong&gt;You don’t have to finish to have an impact. You do have to publish.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;Honoré De Balzac had it right,&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;em&gt;&lt;strong&gt;“For artists, the great problem to solve is how to get oneself noticed”&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;On which Austin Kleon expounds&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;If you just focus on getting really good, Martin says, people will come to you. I happen to agree: You don’t really find an audience for your work; they find you. But it’s not enough to be good. In order to be found, &lt;em&gt;&lt;strong&gt;you have to be findable.&lt;/strong&gt;&lt;/em&gt; I think there’s an easy way of putting your work out there and making it discoverable while you’re focused on getting really good at what you do.&lt;/p&gt;
&lt;p&gt;Imagine if your next boss didn’t have to read your résumé because he already reads your blog. Imagine being a student and getting your first gig based on a school project you posted online. Imagine losing your job but having a social network of people familiar with your work and ready to help you find a new one. Imagine turning a side project or a hobby into your profession because you had a following that could support you.&lt;/p&gt;
&lt;p&gt;Or imagine something simpler and just as satisfying: spending the majority of your time, energy, and attention practicing a craft, learning a trade, or running a business, while also allowing for the possibility that your work might attract a group of people who share your interests.&lt;/p&gt;
&lt;p&gt;All you have to do is, &lt;em&gt;&lt;strong&gt;Show Your Work.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/publish-austin-kleon.png" alt="Austin Kleon’s blackout art. The exposed text says,“Crafting something, is a long uncertain process. A maker should show her work”" /&gt;
 
 
 &lt;/figure&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;From Austin Kleon’s book, &lt;a href="https://austinkleon.com/show-your-work/" target="_blank" rel="noreferrer"&gt;Show Your Work&lt;/a&gt;&lt;/p&gt;
&lt;/figcaption&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;all emphases mine&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;in his book Show Your Work&amp;#160;&lt;a href="#fnref:2" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Create New Scars (or Calluses)</title><link>https://janusworx.com/personal/create-new-scars-or-calluses/</link><pubDate>Mon, 19 Feb 2024 13:37:55 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/create-new-scars-or-calluses/</guid><description>&lt;p&gt;I wrote about creating with &lt;a href="https://janusworx.com/blog/use-your-scars/" &gt;your experience, your scars, the other day&lt;/a&gt;.&lt;br&gt;
And the best way to do that is to develop your calluses, your own scars in the first place.&lt;/p&gt;
&lt;p&gt;Herbert Lui &lt;a href="https://herbertlui.net/write-the-book-you-want-to-live/" target="_blank" rel="noreferrer"&gt;writes&lt;/a&gt; …&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;On either fence of, “Write what you know,” I tend to lean towards writing about what I don’t know; “Write What Obsesses You,” as Meg Wolitzer describes it.&lt;br&gt;
[…] Some people say in order to write a book, you need to live it. While I lived aspects of Creative Doing, the more accurate way to say it would be, the writing process changed me, and that I live the book now. I wrote the book I needed to read, not just in the past, but also in the future.&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;Indeed, &lt;a href="https://herbertlui.net/you-become-what-you-write-about/" target="_blank" rel="noreferrer"&gt;you become what you write about&lt;/a&gt;, (or what you do)!&lt;/p&gt;
&lt;p&gt;This is what I’m trying to do with this slow writing thing.&lt;br&gt;
Which also drives home, what &lt;a href="https://kushaldas.in/" target="_blank" rel="noreferrer"&gt;Kushal&lt;/a&gt; is &lt;em&gt;still&lt;/em&gt; nagging me about and what I am &lt;em&gt;still&lt;/em&gt; procrastinating at. That I do the same with my work. With the stuff that I want to learn.&lt;br&gt;
This is my stake in the ground, Kushal. I’ll do this.&lt;br&gt;
I don’t know how good I’ll get. But I will begin the practice.&lt;/p&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;


&lt;figure class="mjb-img-center"&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/create-scars-craftsman-dad.jpg" alt="a carpenter (my dad) in a woodshed, sanding a piece of wood with his callused hands" /&gt;
 
 
 &lt;/figure&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;The best role model, I have, for a craftsman.&lt;br&gt;
He spent a life at his art and had the calluses and the scars to show for it.&lt;br&gt;
I know this, because I felt them everytime he caressed my cheek as child.&lt;br&gt;
Daddy was the best, there ever was.&lt;/p&gt;
&lt;/figcaption&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>There’s No Dearth of Things to Write About</title><link>https://janusworx.com/personal/theres-no-dearth-of-things-to-write-about/</link><pubDate>Sun, 18 Feb 2024 18:27:36 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/theres-no-dearth-of-things-to-write-about/</guid><description>&lt;p&gt;&lt;br&gt;


&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/post-ideas.png" alt="a list of topics that i want to write about on the blop" /&gt;
 
 
 &lt;/figure&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;
&lt;/p&gt;
&lt;p&gt;Only a short note today.&lt;br&gt;
I dreaded starting up this challenge, because I thought I’d run out of things to say.&lt;br&gt;
What would I write about? Will I dread coming up with topics?&lt;br&gt;
Turns out I needn’t have worried.&lt;/p&gt;
&lt;p&gt;Writing seems to be like a muscle to be worked on and flexed.&lt;br&gt;
The more I do it, the more I &lt;em&gt;want&lt;/em&gt; to do it.&lt;br&gt;
It is making me more observant.&lt;br&gt;
Everything seems like cannon fodder for the page now 😂&lt;br&gt;
This makes me very happy!&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Note to Self: Less Research, Less Rabbit Holes</title><link>https://janusworx.com/work/note-to-self-less-research-less-rabbit-holes/</link><pubDate>Sat, 17 Feb 2024 09:56:11 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/note-to-self-less-research-less-rabbit-holes/</guid><description>&lt;p&gt;&lt;br&gt;

&lt;a href="https://janusworx.com/images/2024/rabbit-hole-1-alice.png" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/rabbit-hole-1-alice-s.jpg" alt="A block and white illstraction of a cross section of topsoil and then underground. There is grass and flowers on top and stones and ropelike rock and starfish-like fossils under the earch." /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;&lt;a href="https://flic.kr/p/97bGsq" target="_blank" rel="noreferrer"&gt;Alice’s Rabbit Hole&lt;/a&gt;, &lt;a href="https://flickr.com/photos/aceo/" target="_blank" rel="noreferrer"&gt;Sandra Strait&lt;/a&gt; / &lt;a href="https://creativecommons.org/licenses/by-nc-nd/2.0/" target="_blank" rel="noreferrer"&gt;CC BY-NC-ND 2.0&lt;/a&gt;&lt;br&gt;
Click on the image for the larger original.&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;Big realisation, I am procrastinating on my other, bigger priorities, with the &lt;a href="https://janusworx.com/tags/100wordhabit/" &gt;100WordHabit&lt;/a&gt; project.&lt;br&gt;
Bigger realisation, if not this, I’d find something else.&lt;br&gt;
Biggest revelation, even if life sucks donkey balls, I need to focus, be disciplined and do what needs doing.&lt;/p&gt;
&lt;p&gt;So here’s a few stream-of-consciousness observations &amp;amp; suggestions, to future Jason, when doing the project.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The writing almost never takes you that long. You write at a fairly decent clip.&lt;/li&gt;
&lt;li&gt;What does take you a lot of time, is that while you do know what to say, you take an inordinately long time, trying to figure out just the right way to say it, to present it.&lt;/li&gt;
&lt;li&gt;It’s the rabbit holes that you get into.&lt;br&gt;
a. You take too long researching, finding &lt;a href="https://flickr.com/search/?text=rabbit%20hole&amp;amp;license=2%2C3%2C4%2C5%2C6%2C9" target="_blank" rel="noreferrer"&gt;just the right image&lt;/a&gt; and the right words.&lt;br&gt;
b. You just spent half an hour trying to figure out the right way, to attribute an image.&lt;br&gt;
c. You spent another trying to find out how to jump to a specific column in Emacs (&lt;code&gt;M-g&lt;/code&gt; followed by &lt;code&gt;tab&lt;/code&gt; followed by the column number and return)&lt;br&gt;
d. You started curating and tagging some mp3s that have being lying around for years now.&lt;br&gt;
e. then you went and forked the music jukebox library you used on Github&lt;/li&gt;
&lt;li&gt;You hate doing the hard stuff.&lt;br&gt;
a. It makes you really uncomfortable&lt;br&gt;
b. It makes you want to take breaks&lt;br&gt;
c. You keep switching to obssessively checking all your feeds.&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;br&gt;
d. You then find something that you just have to learn more about and that leads you into another rabbit hole.&lt;br&gt;
e. Besides you’re a completionist. All those tabs and notes to self, just have to be read and squirreled away&lt;/li&gt;
&lt;li&gt;All of this is taking time away from stuff you really &lt;em&gt;have&lt;/em&gt; to do considering your age.&lt;br&gt;
a. You hardly get time to exercise. Yes life is busy, but you don’t have to make it worse.&lt;br&gt;
b. The career pivot is going slower due to this.&lt;br&gt;
c. You don’t have time to execute your diet.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Here’s a few things you could do …&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Remember, this is only during your deep work hours. We need to make the most of them. Go nuts when you aren’t working.&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;Figure out what your process is. I realise you’re a pantser, but a little bit of outlining will do you no harm.
You already have a running list of topics to prevent writer’s block and time waste. You’ve already lowered the bar, to become more consistent. So see what else, you do in your writing process that takes the longest. In fact, what &lt;em&gt;do&lt;/em&gt; you do? Will recording yourself help?&lt;/li&gt;
&lt;li&gt;&lt;em&gt;(Added, 2024-02-18,)&lt;/em&gt; Don’t check your feeds in the mornings. This one’s a &lt;em&gt;&lt;strong&gt;huge&lt;/strong&gt;&lt;/em&gt; timesink. You find issues that interest you. Then you go to find someone who speaks with a nuanced voice. &lt;em&gt;&lt;strong&gt;Nuanced voices are rare. They’re hard to find!&lt;/strong&gt;&lt;/em&gt; And if you decide to listen to Munger, and &lt;a href="https://fs.blog/the-work-required-to-have-an-opinion/" target="_blank" rel="noreferrer"&gt;go do the work to have an opinion&lt;/a&gt;, by trying to find an opposing nuanced voice? &lt;em&gt;&lt;strong&gt;That’ll take you even longer. Just STOP!&lt;/strong&gt;&lt;/em&gt; Now is not the time to get better informed. Do it later.&lt;/li&gt;
&lt;li&gt;Start clocking times with Org. You want to get a better idea of where the time goes.&lt;br&gt;
&lt;em&gt;Don’t spend too long reading the manual. Just figure out how to clock in, clock out, get a summary&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Set a time block? Posts just have to be published once you hit a hundred words or a hour, whichever is longer? If you still want to continue, do it the next day. The posts could be part one / two / three / blah?&lt;/li&gt;
&lt;li&gt;&lt;em&gt;&lt;strong&gt;IT DOES NOT HAVE TO BE PERFECT!&lt;/strong&gt;&lt;/em&gt; Be ok with “mediocre”, unstructured posts. This phase will not last long.&lt;/li&gt;
&lt;li&gt;Don’t let this take over your life. &lt;a href="https://janusworx.com/reading/" &gt;You &lt;em&gt;already&lt;/em&gt; have one vice.&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;&lt;em&gt;The most important thing though? Kudos to you!&lt;br&gt;
The meditation practice is really paying off in spades. You notice things. And you try and do something about it. You don’t let it bother your present. Most importantly, you don’t let it devolve into self loathing. You’re a lot less stressed, a lot more peaceful and a lot more resilient than you used to be.&lt;/em&gt;&lt;/p&gt;

&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/rabbit-hole-2-i-will-survive.jpg" alt="a cartoon penguin shaking his fist at a large oncoming wave. the speech bubble quotes Gloria Gaynor,“I will survive!”" /&gt;
 
 
 &lt;/figure&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;courtesy &lt;a href="https://comicskingdom.com/Macanudo/about" target="_blank" rel="noreferrer"&gt;Liniers&lt;/a&gt; / &lt;a href="https://comicskingdom.com/Macanudo/2024-02-17" target="_blank" rel="noreferrer"&gt;Comics Kingdom&lt;/a&gt;&lt;/p&gt;
&lt;/figcaption&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;There’s nothing new there, since the last time you checked, you twit!&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;The point is also to &lt;em&gt;make&lt;/em&gt; the time&amp;#160;&lt;a href="#fnref:2" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>The Kobo Elipsa 2e, Six Months Later</title><link>https://janusworx.com/work/the-kobo-elipsa-2e-six-months-later/</link><pubDate>Fri, 16 Feb 2024 09:28:55 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/the-kobo-elipsa-2e-six-months-later/</guid><description>&lt;br&gt;

&lt;p&gt;&lt;a href="https://janusworx.com/images/2024/elipsa-updated.jpg" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/elipsa-updated-s.jpg" alt="A Kobo Elipsa 2e. The screen is cracked. " /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;&lt;/p&gt;
&lt;figcaption style="font-style: italic; text-align: center; font-size: 85%; color: var(--secondary)"&gt;
&lt;p&gt;My beloved, battered, Elipsa 2e. Click the image for a larger image.&lt;/p&gt;
&lt;/figcaption&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;It’s been close to &lt;del&gt;six&lt;/del&gt; seven months, since I &lt;a href="https://janusworx.com/blog/a-new-hole-hawg-the-kobo-elipsa-2e/" target="_blank" rel="noreferrer"&gt;moved over from the Oasis to the Elipsa&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Here’s my list of things / experiences with the Elipsa 2e, positive and negative, in no order whatsever. Also this is not representative of a typical ebook reader&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;. I, umm … have a &lt;em&gt;lot&lt;/em&gt; of books, and the Elipsa carries most of them. So every action that it does, it does with that number of books (either physically or with its database) …&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I love it!&lt;/li&gt;
&lt;li&gt;It’s &lt;em&gt;very&lt;/em&gt; light for its size. I don’t feel the weight of this 10″ device as much as I felt the old 7″ Oasis.&lt;/li&gt;
&lt;li&gt;It’s &lt;em&gt;very&lt;/em&gt; fast.&lt;/li&gt;
&lt;li&gt;I use it just like a book. It lends itself to such use as well. Part of it is the weight, part of it, is its responsiveness.&lt;/li&gt;
&lt;li&gt;This is also how I broke it. I threw it on the bed and then it slipped right over the edge, and cracked the screen 😂 You can see the big chonky part that is permanantly dead, as well as the thin, dead, vertical and horizontal lines. Since I read with fat margins, the chonky part does not get in my way&lt;sup id="fnref:2"&gt;&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref"&gt;2&lt;/a&gt;&lt;/sup&gt; and the lines are mostly invisible.&lt;/li&gt;
&lt;li&gt;&lt;del&gt;I cannot enlarge images in a book. I tap, I double tap, I pinch to zoom … nothing. This is the &lt;em&gt;&lt;strong&gt;one&lt;/strong&gt;&lt;/em&gt; thing I miss from the Oasis.&lt;/del&gt;
&lt;em&gt;A few hours later:&lt;/em&gt; Of course, now it works! 😂 Double tapping an image, opens up the image where I can zoom and pan around! My fault for not noticing this earlier.&lt;/li&gt;
&lt;li&gt;I love it!&lt;/li&gt;
&lt;li&gt;It hangs loading complicated books or large pdfs, but it recovers quickly. This does not happen that often.&lt;/li&gt;
&lt;li&gt;It randomly hangs and/or crashes. This happens quite often. But I’ve learnt to reboot it with the power button, and it comes right back up, quickly. It reminds me of the Am386 machines, I’d assemble for use as Netware thin clients in my youth. They would run hot and crash ofen, but we didn’t mind, because they rebooted right back so darned fast 😂&lt;/li&gt;
&lt;li&gt;Not that the Elipsa runs hot. It just runs fast and crashes. And then comes back on and carries on as if nothing ever happened.&lt;/li&gt;
&lt;li&gt;Did I tell you, I love it?&lt;/li&gt;
&lt;li&gt;On paper, the screen specs look inferior to the Oasis. In practice, it made no difference to these old eyes.&lt;/li&gt;
&lt;li&gt;The user experience is not as good is it could be, but it’s &lt;em&gt;miles better&lt;/em&gt; than anything else I’ve used. I figured out most of it intuitively. I love just running my finger along the left edge to adjust the brightness. Helps a lot when I’m reading in bed, so that the better half does not get disturbed (or grumble at me much.)&lt;/li&gt;
&lt;li&gt;Books on the Kobo store are a bit more expensive than the Amazon store. (New releases tend to cost the same.)&lt;/li&gt;
&lt;li&gt;The database that it uses, gets corrupted quite often, which then leads to it no longer being able to talk to my PC or not showing the books in the device&lt;sup id="fnref:3"&gt;&lt;a href="#fn:3" class="footnote-ref" role="doc-noteref"&gt;3&lt;/a&gt;&lt;/sup&gt;. I doubt, I’d love the Elipsa as much as I do, if the &lt;a href="https://www.mobileread.com/forums/forumdisplay.php?f=234" target="_blank" rel="noreferrer"&gt;Calibre ecosystem&lt;/a&gt; didn’t support it so well.&lt;sup id="fnref:4"&gt;&lt;a href="#fn:4" class="footnote-ref" role="doc-noteref"&gt;4&lt;/a&gt;&lt;/sup&gt;
&lt;ul&gt;
&lt;li&gt;I can backup and restore the database at will, thanks to the awesome &lt;a href="https://www.mobileread.com/forums/showthread.php?t=215339" target="_blank" rel="noreferrer"&gt;Kobo Utilities&lt;/a&gt; plugin.&lt;/li&gt;
&lt;li&gt;I’m getting old and impatient and want to read a lot more. So I’ve given up on taking notes by hand and moved over to highlighting and making notes in the Elipsa. I wouldn’t do this if not for the lovely &lt;a href="https://www.mobileread.com/forums/showthread.php?t=241206" target="_blank" rel="noreferrer"&gt;Annotations&lt;/a&gt; plugin, which lets me get all my notes and highlights out of the Elipsa and into Calibre. &lt;em&gt;(pic below, click to embiggen)&lt;/em&gt; The jury’s still out on this one.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;I love it so much, that when I heard a friend was going to the USA, I bullied them into buying me &lt;em&gt;another&lt;/em&gt; one to replace this one when it dies.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;a href="https://janusworx.com/images/2024/elipsa-kobo-update-annotations.png" &gt;
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/elipsa-kobo-update-annotations-s.png" alt="A screenshot of a book in Calbre, showing book notes and highlights as part of its metadata" /&gt;
 
 
 &lt;/figure&gt;&lt;/a&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;
&lt;/p&gt;
&lt;p&gt;To conclude, the Elipsa 2e is wonderful.&lt;br&gt;
It has flaws that I can live with.&lt;br&gt;
It serves me well.&lt;br&gt;
I love it!&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes" role="doc-endnotes"&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id="fn:1"&gt;
&lt;p&gt;the person, not the device&amp;#160;&lt;a href="#fnref:1" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:2"&gt;
&lt;p&gt;much&amp;#160;&lt;a href="#fnref:2" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:3"&gt;
&lt;p&gt;This point I think, is more a me problem, than a device problem&amp;#160;&lt;a href="#fnref:3" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id="fn:4"&gt;
&lt;p&gt;Note to the Kobo folk, please care about your device software a smidgen. Please! At least at as much, if not more than these lovely open source folk do!&amp;#160;&lt;a href="#fnref:4" class="footnote-backref" role="doc-backlink"&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description></item><item><title>Note to Self, Emacs Help Stuff</title><link>https://janusworx.com/work/note-to-self-emacs-help-stuff/</link><pubDate>Thu, 15 Feb 2024 08:03:24 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/work/note-to-self-emacs-help-stuff/</guid><description>
&lt;figure&gt;
 &lt;img class="my-0 rounded-md" src="https://janusworx.com/images/2024/emacs-logo.svg" alt="" /&gt;
 
 
 &lt;/figure&gt;
&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

&lt;p&gt;Collection of various little things I find handy when I am lost in Emacs&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Truly lost and need help &lt;em&gt;about&lt;/em&gt; help itself? &lt;code&gt;C-h C-h&lt;/code&gt; or &lt;code&gt;C-h ?&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;C-h m&lt;/code&gt; should bring up a list of all the shortcuts available to that mode.&lt;/li&gt;
&lt;li&gt;Want to find out what the docs mean when they refer to something? &lt;code&gt;C-h o&lt;/code&gt; and then type in that name.&lt;br&gt;
For e.g. when the Org Mode docs refer to &lt;code&gt;org-hide-leading-stars&lt;/code&gt;, a &lt;code&gt;C-h o&lt;/code&gt; =&amp;gt; &lt;code&gt;Return&lt;/code&gt; =&amp;gt; &lt;code&gt;org-hide-leading-stars&lt;/code&gt; will give me details about what it is. (According to the docs: &lt;code&gt;org-hide-leading-stars&lt;/code&gt; &lt;em&gt;is a variable defined in ‘org.el’. Its value is nil.&lt;/em&gt;) Alternatively if you know the &lt;em&gt;type&lt;/em&gt; of object, you’re looking at, &lt;code&gt;C-h f&lt;/code&gt; will give you help on a function and &lt;code&gt;C-h v&lt;/code&gt; will do the same with a variable.&lt;/li&gt;
&lt;li&gt;If you want to know what function is behind this crazy shortcut you’re typing, a &lt;code&gt;C-h k&lt;/code&gt; followed by giving it the shortcut your typing will lead you to the &lt;del&gt;culprit&lt;/del&gt; command that powers it.&lt;br&gt;
For e.g. I blanked out on how to toggle multiple checkboxes in Org Mode today and I was hitting &lt;code&gt;C-c C-x b&lt;/code&gt; to on avail. Running &lt;code&gt;C-h k&lt;/code&gt; told me that it was bound to &lt;code&gt;org-tree-to-indirect-buffer&lt;/code&gt;. So I was madly mashing the wrong keys. A little digging (with &lt;code&gt;C-h m&lt;/code&gt;) revealed that what I needed was &lt;code&gt;C-c C-x C-b&lt;/code&gt; which ran &lt;code&gt;org-toggle-checkbox&lt;/code&gt; which indeed did what I wanted! :)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Use Your Scars</title><link>https://janusworx.com/personal/use-your-scars/</link><pubDate>Wed, 14 Feb 2024 07:39:40 +0530</pubDate><author>feedback@janusworx.com (Mario Jason Braganza)</author><guid>https://janusworx.com/personal/use-your-scars/</guid><description>&lt;br&gt;

&lt;p&gt;I was catching up with my &lt;a href="https://www.thedeeplife.com/podcasts/episodes/ep-284-feel-good-productivity-w-ali-abdaal/" target="_blank" rel="noreferrer"&gt;Cal Newport episodes&lt;/a&gt; this morning, when I heard this little clip above, at around the 44m mark
It reminded me that the things in life, that you can talk most easily about (with authority), are the things that you have the most experience with; the things that you carry the scars of.&lt;/p&gt;
&lt;p&gt;Like &lt;a href="https://janusworx.com/blog/mandy-brown-celebrates-fifteen-years-of-her-blog/" &gt;Mandy Brown&lt;/a&gt; or &lt;a href="https://janusworx.com/blog/what-i-learnt-from-antifragile-v/" &gt;Taleb&lt;/a&gt; do.&lt;br&gt;
Like &lt;a href="https://janusworx.com/blog/brave-enough/" &gt;Cheryl Strayed&lt;/a&gt; does.&lt;br&gt;
Like Roosevelt’s, &lt;a href="https://www.artofmanliness.com/character/manly-lessons/manvotional-the-man-in-the-arena-by-theodore-roosevelt/" target="_blank" rel="noreferrer"&gt;Man in the Area&lt;/a&gt;.&lt;br&gt;
Like &lt;a href="https://www.youtube.com/watch?v=cHS6U8aqMIk&amp;amp;t=52s" target="_blank" rel="noreferrer"&gt;Rachel&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The best things happen the easiest, when you use your scars.&lt;br&gt;
Write &lt;em&gt;that&lt;/em&gt; fucking book, indeed.&lt;/p&gt;
&lt;p&gt;&lt;hr style='margin-left: auto; margin-right: auto; margin-bottom: 40px; margin-top: 50px; width:100px; border: none; background-color:rgb(238, 238, 238); color: rgb(238, 238, 238); height: 1px;'/&gt;

Feedback on this post? Mail me at &lt;a href="mailto:&amp;amp;#102;&amp;amp;%23101;&amp;amp;%23101;&amp;amp;%23100;&amp;amp;%2398;&amp;amp;%2397;&amp;amp;%2399;&amp;amp;%23107;&amp;amp;%2364;&amp;amp;%23106;&amp;amp;%2397;&amp;amp;%23110;&amp;amp;%23117;&amp;amp;%23115;&amp;amp;%23119;&amp;amp;%23111;&amp;amp;%23114;&amp;amp;%23120;&amp;amp;%2346;&amp;amp;%2399;&amp;amp;%23111;&amp;amp;%23109;" &gt;feedback at this domain&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;

P.S. Subscribe to my &lt;a href="https://janusworx.com/subscribe/" target="_blank" rel="noreferrer"&gt;mailing list!&lt;/a&gt;&lt;br&gt;
Forward these posts and letters to your friends and get them to subscribe!&lt;br&gt;
P.P.S. Feed my &lt;a href="https://www.amazon.in/hz/wishlist/ls/2QAUKHHAMOOVS?ref_=wl_share" target="_blank" rel="noreferrer"&gt;insatiable reading habit.&lt;/a&gt;&lt;/p&gt;</description></item></channel></rss>