This week, I learned:
mdqis pretty useful to extract Markdown sections. For examplecat *.md | mdq '# Title'extracts all sections where the header contains ‘Title’ (case-insensitive).- CloudFlare Browser Run is, roughly, a browser as a service. Pricing: 10 hours free per month, then 9c per hour. I had Codex run a small research to explore it, and it seems simple to set it up and use it.
- GPT 5.5 seems to be especially better than GPT 5.4 and running for long, with tool calls, without losing focus. That’s something OpenAI models are good at anyway, so this takes it a step further. ChatGPT
- I added gpt-image-2 to my LLM Art Style gallery. It is notably better with text accuracy. For example, on Rock - Paper - Scissors - Lizard - Spock it consistently lists all 10 rules, which Nano Banana 2 does not.
- World leaders do keep us entertained.
- Saparmurat Niyazov (Turkmenistan) renamed the months of the year and days of the week after himself and his mother. He built a towering, gold-plated statue of himself in the capital that rotated so it would always face the sun. He also banned lip-syncing at concerts, outlawed gold teeth, and banished dogs from the capital because he found their smell unappealing.
- Idi Amin (Uganda) declared himself the “Uncrowned King of Scotland” and sent baffling, unsolicited telegrams to world leaders - advising Richard Nixon to recover from Watergate, or offering food aid to a struggling Britain.
- François “Papa Doc” Duvalier (Haiti) reportedly ordered all black dogs in Haiti to be put to death and claimed his personal Vodou curse was responsible for the assassination of John F. Kennedy.
- Francisco Macías Nguema (Equatorial Guinea) banned the word “intellectual”, banned the use of lubricants in the power plant (claiming his magic would keep it running, which promptly broke the generators), and stored the nation’s remaining foreign currency under his bed.
- Kim Jong-il (North Korea) claimed he invented the hamburger (calling it “double bread with meat”) and shot 11 holes-in-one his first time playing golf.
- Donald Trump (United States) used late-night tweets to announce major policy shifts and fire his own cabinet members. He altered an official government hurricane map with a Sharpie to match a previous erroneous statement, and publicly mused during a press briefing about the injection of household disinfectants as a medical treatment.
- Git repositories inside git repositories (without using sub-modules) don’t seem to work well. I need this because I have mono-repos for research and I want to use git in a sub-folder to iterate, then commit just the final version to the parent folder. Looks like I need to remove the child
.git/(e.g. rename to.git.bak/, which I’ve added to my~/.config/git/ignore) for this to work. Gemini - To run a script in the background (without logs) and detach / disown it, use
nohup your-script >/dev/null 2>&1 & disown - Running
/insightson Claude Code helped me add these two instructions to my code skill:- Test web pages with screenshots (for layout, overlaps, contrast) AND CDP (for interactions, navigation) before finalizing
- Prefer icon libraries over unicode/emoji icons.
- Sending an entire PDF/PPTX to Gemini costs ~40% of sending PDF/PPTX + images. The quality is fine for small files, but for large files adding images reduces error rate from ~5% to 0.5%.
- Pandoc Markdown to Word DOCX supports sidebar comments. You can use this Markdown: Here is
[comment in sidebar]{.comment-start id="c1" author="Anand" date="2026-01-01T12:00:00Z"}commented text[]{.comment-end id="c1"} inline.Gemini. In fact, Pandoc supports lots of other things, like:- Custom styles via block
::: {custom-style="Custom Style Name"} - Track changes via
[inserted text]{.insertion author="Name" date="2026-04-20T12:00:00Z"}and[deleted text]{.deletion author="Name"} - Page breaks via
\newpage(a LaTeX command that Pandoc supports in Markdown) - CSS styles via
{width="5.5in" height="3in"}
- Custom styles via block
- Offpunk is a CLI offline-first browser. Interesting idea, but installation is a problem.
After
sudo apt uninstall offpunkrunningoffpunkfailed withImportError: lxml.html.clean module is now a separate project lxml_html_clean.After agit cloneit reportedHTML document detected. Please install python-bs4 and python-readability. These are easy to fix, but I wasn’t inclined. - Creating an authenticated MCP Server for ChatGPT is complex. It requires OpenID Connect (for which library support is weak and requires a provider like Auth0), dynamic client registration (which is hard to implement though Auth0 supports it), and after half a day of experiments, I still couldn’t connect. An easier option is to run temporary tunnels with
cloudflaredorngrokorlocaltunnel.