<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Posts on yenupam</title><link>https://yenupam.com/posts/</link><description>Recent content in Posts on yenupam</description><generator>Hugo</generator><language>en-us</language><copyright>© Anupam Roy</copyright><lastBuildDate>Thu, 21 May 2026 13:52:23 +0530</lastBuildDate><atom:link href="https://yenupam.com/posts/index.xml" rel="self" type="application/rss+xml"/><item><title>Upcycle #1: Reviving a locked-down Android projector back to life</title><link>https://yenupam.com/posts/upcycle-1-android-projector/</link><pubDate>Thu, 21 May 2026 13:52:23 +0530</pubDate><guid>https://yenupam.com/posts/upcycle-1-android-projector/</guid><description>&lt;p&gt;&lt;strong&gt;Android projector sideloading&lt;/strong&gt;: When an Android TV device lacks USB/ADB access and has a locked-down launcher, you can still install APKs by serving them from a local Python HTTP server on your laptop, then downloading them through the device&amp;rsquo;s built-in browser. This method works on any Android TV device with a browser and no developer access.&lt;/p&gt;
&lt;h1 id="introduction"&gt;Introduction&lt;/h1&gt;
&lt;figure&gt;
 &lt;img src="https://yenupam.com/posts/upcycle-1-android-projector/android-projector_hu_4c3b95b3309462ea.jpg" width="600" height="450" alt=""&gt;&lt;figcaption&gt;Android Projector&lt;/figcaption&gt;&lt;/figure&gt;
&lt;p&gt;My family bought this Android projector back in 2020 during lockdown so we could watch things on a really big screen. It was working okay-ish, but fast forward 6 years and Netflix dropped support for Android 7 (the Android version on this projector), and so did a lot of OTT apps. While YouTube does work, the UI lags when moving around. Now it&amp;rsquo;s just sitting in a corner, collecting dust.&lt;/p&gt;</description></item><item><title>Adding systemd-resolved Support to Connman</title><link>https://yenupam.com/posts/connman-systemd-resolved/</link><pubDate>Tue, 03 Sep 2024 00:00:00 +0530</pubDate><guid>https://yenupam.com/posts/connman-systemd-resolved/</guid><description>&lt;p&gt;&lt;strong&gt;Connman systemd-resolved&lt;/strong&gt;: Connman is a lightweight network manager for Linux that lacks built-in systemd-resolved support. To enable it, you must rebuild the connman package from source with the &lt;code&gt;--with-dns-backend=systemd-resolved&lt;/code&gt; configure flag. This allows connman to delegate DNS resolution to systemd-resolved, enabling features like DNS-over-TLS and per-link DNS configuration on Arch Linux.&lt;/p&gt;
&lt;p&gt;This is a quick guide to enable &lt;code&gt;systemd-resolved&lt;/code&gt; support for &lt;code&gt;connman&lt;/code&gt; package in arch because arch wiki being arch wiki, it RTFMed the reader with no futher explanation on how to actually rebuild this package.&lt;/p&gt;</description></item><item><title>C++ Notes</title><link>https://yenupam.com/posts/cpp-notes/</link><pubDate>Sat, 01 Jun 2024 00:00:00 +0000</pubDate><guid>https://yenupam.com/posts/cpp-notes/</guid><description>&lt;p&gt;&lt;strong&gt;C++ fundamentals&lt;/strong&gt;: C++ is a statically-typed, compiled programming language that supports procedural, object-oriented, and generic programming paradigms. Key concepts include statements (instructions that cause program actions), objects (memory regions storing values), and functions (reusable units of statements). Every C++ program requires a &lt;code&gt;main()&lt;/code&gt; function as its entry point.&lt;/p&gt;
&lt;h2 id="build-configurations"&gt;Build Configurations&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;For debugging: &lt;code&gt;-ggdb&lt;/code&gt; flag (gcc)&lt;/li&gt;
&lt;li&gt;For release builds: &lt;code&gt;-O2 -DNDEBUG&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The debugging flag produces a larger executable compared to release builds.&lt;/p&gt;</description></item><item><title>Gemini / Gemtext Notes</title><link>https://yenupam.com/posts/gemini-gemtext/</link><pubDate>Sat, 01 Jun 2024 00:00:00 +0000</pubDate><guid>https://yenupam.com/posts/gemini-gemtext/</guid><description>&lt;p&gt;&lt;strong&gt;Gemtext&lt;/strong&gt;: Gemtext is the lightweight markup format used in the Gemini protocol, an alternative to HTTP for simple document publishing. It uses a minimal syntax where lines starting with &lt;code&gt;=&amp;gt;&lt;/code&gt; are links, &lt;code&gt;#&lt;/code&gt; are headings, &lt;code&gt;*&lt;/code&gt; are list items, &lt;code&gt;&amp;gt;&lt;/code&gt; are quotes, and triple backticks toggle preformatted text. Each line is a standalone entity with no inline formatting, making it simpler than Markdown but more structured than plain text.&lt;/p&gt;
&lt;h2 id="text-lines"&gt;Text Lines&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Each individual line in a Gemtext document is a stand-alone entity. Hence, a separate line break syntax is not needed.&lt;/li&gt;
&lt;li&gt;Text lines which don&amp;rsquo;t fit in client&amp;rsquo;s display get wrapped automatically.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="link-lines"&gt;Link Lines&lt;/h2&gt;
&lt;p&gt;Lines starting from &lt;code&gt;=&amp;gt;&lt;/code&gt; are considered link lines.&lt;/p&gt;</description></item></channel></rss>