<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>aw///y</title><link>https://awllly.com/</link><description>Recent content on aw///y</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Sat, 07 Mar 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://awllly.com/index.xml" rel="self" type="application/rss+xml"/><item><title>ComChecker</title><link>https://awllly.com/projects/comchecker/</link><pubDate>Sat, 07 Mar 2026 00:00:00 +0000</pubDate><guid>https://awllly.com/projects/comchecker/</guid><description>&lt;p&gt;Bulk-Check .com Domains Like a Boss (Python, 5 Mins)&lt;/p&gt;
&lt;p&gt;Tired of F5-ing GoDaddy for that killer .com? I&amp;rsquo;ve been there—brainstorming startup names at 2 AM, only to find they&amp;rsquo;re all squatted by domain flippers. Screw that. Here&amp;rsquo;s a dead-simple Python script to check 100 domains in seconds. No APIs, no credit cards, just raw WHOIS muscle.&lt;/p&gt;
&lt;p&gt;First, pip install python-whois. Then fire up this:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-python" data-lang="python"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="nn"&gt;whois&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="nn"&gt;sys&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="n"&gt;domains&lt;/span&gt; &lt;span class="o"&gt;=&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="s1"&gt;&amp;#39;killeridea.com&amp;#39;&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="s1"&gt;&amp;#39;nextbigthing.com&amp;#39;&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="c1"&gt;# Add yours here&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="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;domain&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="n"&gt;domains&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;try&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="n"&gt;w&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;whois&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;whois&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;domain&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="nb"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sa"&gt;f&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="n"&gt;domain&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;: ❌ Taken (expires &lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="n"&gt;w&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;expiration_date&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;)&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="k"&gt;except&lt;/span&gt; &lt;span class="n"&gt;whois&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;parser&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;PywhoisError&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="nb"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sa"&gt;f&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="n"&gt;domain&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;: ✅ Available! Grab it NOW.&amp;#34;&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;p&gt;Boom. Run it: python checker.py. Green lights? Hit Namecheap before some bot does. (Pro tip: Whois rate-limits suck—add time.sleep(1) if you&amp;rsquo;re scaling to thousands, or proxy it to dodge blocks.)&lt;/p&gt;</description></item><item><title>Now</title><link>https://awllly.com/now/</link><pubDate>Mon, 02 Mar 2026 00:56:58 +0530</pubDate><guid>https://awllly.com/now/</guid><description>&lt;h1 id="what-im-doing-now"&gt;What I&amp;rsquo;m Doing NOW&lt;/h1&gt;
&lt;p&gt;&lt;em&gt;This is a &lt;a href="https://nownownow.com/"&gt;Now&lt;/a&gt; page and is inspiired by one of my favorite author, Derek Siver&amp;rsquo;s &lt;a href="https://sive.rs/now"&gt;Now page&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Updated March 1st 2026, from Mumbai, India where summer is just beginning and the AQI is a pleasant 36 ppb. (Yes, I am more troubled by the stuff I breathe than the warmth of my skin).&lt;/p&gt;
&lt;h2 id="health"&gt;Health&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;I&amp;rsquo;ve started running &amp;ndash; away from my problems. Nah, that&amp;rsquo;s 2020&amp;rsquo;s me. Now I run into them head on. Lot of fun, would recommend. But no, I am actually running, like 5K per week. Well, almost every other week. I want to make this a regular thing but that&amp;rsquo;s where I&amp;rsquo;m at right now.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="relationships"&gt;Relationships&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;I&amp;rsquo;ve been meeting my friends and family more. I think I did more dinners with loved ones in the last 6 months than I have done in the last 3 years.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="love"&gt;Love&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;I&amp;rsquo;ve found the love of my life. She is soo sweet. I thank my stars everyday for the unusual way in which our paths crossed. Hon, if you are reading this you should know that I love you. I love you more than I love a ribeye steak and that&amp;rsquo;s saying something.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="socials"&gt;Socials&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;I&amp;rsquo;m on Instagram now &amp;ndash; I recently started posting on instagram after collecting an iPhone full of photos from 3 trips abroad. I mean, its better off on Meta servers than my paid iCloud storage amiright?!&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="work"&gt;Work&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;I&amp;rsquo;m currently working on a lot of Agentic AI assisted applications. I mean who isn&amp;rsquo;t, I get it, but my work focuses more on their optimization and production ready deployment.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="tech"&gt;Tech&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;I finally setup my Macbook M4. The 24 gigs of ram is really something I never thought I&amp;rsquo;d need but to know that it exists is a huge peace of mind on long running tasks or heavy work days.&lt;/li&gt;
&lt;li&gt;I also got a iPhone 17 Pro Max and it&amp;rsquo;s already got a chipped corner. Something something clumsy hands&amp;hellip;&lt;/li&gt;
&lt;li&gt;Not exactly tech but my girlfriend got me a pair of white All Birds shoes and I must say these are the most comfortable pair of outdoor-socks I&amp;rsquo;ve ever worn. God bless the hands that made these shoes. The comfort they offer is simply unmatched.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="learning"&gt;Learning&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;I&amp;rsquo;m a big fan of books shared on Hacker News. Someone even made a &amp;ldquo;Book Tracker&amp;rdquo; for books mentioned in the comments. I try reading one book from that list once every month.&lt;/li&gt;
&lt;li&gt;This month&amp;rsquo;s reading is &amp;ndash; In God&amp;rsquo;s Hands by Desmond Tutu. I&amp;rsquo;ve always found faith to be an alluring topic. This book provides a window into the mind of a person who&amp;rsquo;s very life is his faith &amp;ndash; soo very interesting, don&amp;rsquo;t you think?!&lt;/li&gt;
&lt;li&gt;Another fun read for this year is Bombay Balchao by Jane Borges &amp;ndash; a sneak peak into the everyday happenings of typical Goan catholic families in Bombay.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="food"&gt;Food&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;After returning from Europe I am trying to dedicate myself to little less gastronomic / salad heavy diet but it&amp;rsquo;s proving more difficult than I thought. That being said I&amp;rsquo;ve successfully switched to a one-mean-a-day diet and so far its quite nice.&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>About</title><link>https://awllly.com/about/</link><pubDate>Sun, 01 Mar 2026 09:00:00 +0000</pubDate><guid>https://awllly.com/about/</guid><description>&lt;p&gt;Hi, I&amp;rsquo;m &lt;strong&gt;Awly&lt;/strong&gt; – a programmer and writer.&lt;/p&gt;
&lt;h2 id="what-i-do"&gt;What I Do&lt;/h2&gt;
&lt;p&gt;I build things for the web and write about what I learn along the way. This blog is my corner of the internet where I share:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Technical tutorials and guides&lt;/li&gt;
&lt;li&gt;Thoughts on design and development&lt;/li&gt;
&lt;li&gt;Personal projects and experiments&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;A few places to see while you&amp;rsquo;re still here:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;&lt;a href="https://awllly.com/writings"&gt;Writings&lt;/a&gt;&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;&lt;a href="https://awllly.com/projects"&gt;Projects&lt;/a&gt;&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;&lt;a href="https://awllly.com/experiences"&gt;Experiences&lt;/a&gt;&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;&lt;a href="https://awllly.com/topics"&gt;Topics&lt;/a&gt;&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="why-this-site"&gt;Why This Site&lt;/h2&gt;
&lt;p&gt;I created this site using &lt;a href="https://gohugo.io/"&gt;Hugo&lt;/a&gt; and the &lt;a href="https://github.com/awllly/prosecco"&gt;Prosecco theme&lt;/a&gt; – a minimalist paper like theme with customizable color palettes inspired by VS Code themes.&lt;/p&gt;</description></item><item><title>Why</title><link>https://awllly.com/why/</link><pubDate>Sun, 01 Mar 2026 11:11:11 +0530</pubDate><guid>https://awllly.com/why/</guid><description>&lt;p&gt;I bought a domain on a Tuesday, which is the least dramatic way to begin anything that will quietly eat the rest of your life.
The checkout page asked if I wanted privacy protection; I clicked yes, then realized the blog itself the antithesis of that act.&lt;/p&gt;
&lt;p&gt;For about 8 years I’ve been the human grease in the gears: sprint plans, burn-down charts, the guy who can still grep faster than most people scroll.&lt;br&gt;
I type at 120 wpm, which sounds like a party trick until you realize it’s just the speed at which thoughts escape before I lose them. It&amp;rsquo;s really just a desperate attempt at hoarding ideas if you will.
Most of those thoughts die in Obsidian: 100K orphaned notes, a digital graveyard where half-baked scripts and shower insights go to haunt each other.
Every morning I open the vault, see the markdown tombstones and think I must do something about these files, then conveniently get distracted by the Jira tickets I myself create.&lt;/p&gt;</description></item></channel></rss>