# popup (blogs) — RSS Amplifier

Recent posts from the 4 feeds in the RSS Amplifier directory that cover popup.

Page: <https://rssamplifier.com/topics/popup/blogs>  
Feed: <https://rssamplifier.com/topics/popup/blogs.md>

---

## [Announcing the Community Builders Residency](https://edgecityindia2026.substack.com/p/announcing-the-community-builders)

_2026-08-18 · Edge City India 2026_

A three-week residency bringing online, offline, and hybrid community builders together in Mandrem, Goa.

## [The Road to Edge: Backroad Farm Caravan Experience](https://edgecityindia2026.substack.com/p/the-road-to-edge-backroad-farm-caravan)

_2026-08-17 · Taylor Lamprecht · Edge City India 2026_

A 10-day overland caravan through South India's farms and regenerative villages, landing in Goa exactly as Edge City India begins.

## [Housing for Edge City India](https://edgecityindia2026.substack.com/p/housing-for-edge-city-india)

_2026-08-14 · Edge City India 2026_

Your full guide on where to stay during years popup village in Goa.

## [Announcing the Ground Floor Residency](https://edgecityindia2026.substack.com/p/the-future-arrives-locally)

_2026-08-11 · Edge City India 2026_

A month-long R&D lab with 100 Goan business owners, builders, and researchers, in partnership with local governments.

## [Giving an AI agent access to my online bank](https://raine.dev/blog/giving-ai-agent-access-to-my-online-bank/)

_2026-08-11 · Raine Virta · Raine Virta_

I have recently been trying to automate my company's monthly bookkeeping with agents. I find it tedious and procrastinate on it for far too long. The biggest time sink is finding receipts from various services and one-off purchases, then attaching each one to the corresponding transaction in Holvi which I use as online bank. I collect receipts in an iCloud Drive folder. A yet-to-be-released macOS…

## [build3 and Edge City are bringing something new for India's startup ecosystem](https://edgecityindia2026.substack.com/p/build3-and-edge-city-are-bringing)

_2026-08-06 · Edge City India 2026_

A 10-week accelerator ending inside a global popup village of 500+ international builders in Goa this October.

## [Announcing the Inflection Fellowship 2026 at Edge City India](https://edgecityindia2026.substack.com/p/announcing-the-inflection-fellowship)

_2026-08-04 · Edge City India 2026_

A three-week fellowship for exceptional builders under 25, at the intersection of frontier tech, science, and society, on the coast of Goa, India.

## [Volunteer at Edge City India 2026](https://edgecityindia2026.substack.com/p/volunteer-at-edge-city-india-2026)

_2026-07-29 · Edge City India 2026_

Apply to join our team of volunteers and get a discounted ticket.

## [Tickets for Edge City India 2026](https://edgecityindia2026.substack.com/p/tickets-for-edge-city-india-2026)

_2026-07-24 · Taylor Lamprecht · Edge City India 2026_

Ticket pricing and principles for our next popup village.

## [Welcome to Edge City India](https://edgecityindia2026.substack.com/p/welcome-to-edge-city-india)

_2026-06-29 · Edge City India 2026_

Applications are open. October 11 – November 1, Mandrem, North Goa.

## [One platform, from silicon to agent (Sponsored)](https://crawlproof.com/a/gzFOATXZLnC3)

_2026-06-29 · **Sponsored**_

Serverless inference plus Inference Router to optimize cost and latency at scale.

## [How to orchestrate large coding tasks without context bloat](https://raine.dev/blog/phased-implement-workflow/)

_2026-05-02 · Raine Virta · Raine Virta_

I have lately been experimenting with an agentic workflow where one agent coordinates a large coding task, while short-lived worktree agents implement isolated phases in their own branches. A tmux session with phased-implement workflow running. Each tab in the sidebar on the left is a worktree agent. # The orchestration layer It uses workmux's primitives as the control plane for spinning off work…

## [Never leave the home row to navigate tmux panes](https://raine.dev/blog/tmux-navigate-panes-home-row/)

_2026-02-22 · Raine Virta · Raine Virta_

tmux's default pane navigation requires pressing your prefix key The key combo you press before a tmux command, e.g. Ctrl+b followed by an arrow key. If you switch panes dozens (or hundreds) of times a day, that means constantly moving your right hand away from its resting position to reach the arrow keys, then back again. It's a minor interruption each time, but these unnecessary hand movements…

## [Apple&#x27;s new Icon Composer and why your Mac app icon is too big](https://raine.dev/blog/icon-composer-mac-app-icon-size/)

_2026-02-04 · Raine Virta · Raine Virta_

After creating an icon for my Mac app with Icon Composer, I realized that it's way bigger than rest of the apps when browsing the Applications directory. For whatever reason, when archiving the app in Xcode, it didn't get the empty space around the icon, even though many sources on the Internet suggested it should work like that automatically. Some people were even suggesting you're supposed to…

## [Atomic commits for AI agents](https://raine.dev/blog/atomic-commits-for-ai-agents/)

_2026-01-31 · Raine Virta · Raine Virta_

These days I hardly write commit messages manually anymore. The agent, with all the context on the task, writes reasonably good commit messages in a fraction of the time I would. Where agents occasionally struggle, however, is atomic commits - commits that contain exactly one logical change. If at any point unrelated changes are introduced into the same file, not to mention within close proximity…

## [tmux tip: Add Obsidian notes to Claude Code context](https://raine.dev/blog/obsidian-vault-claude-code/)

_2026-01-18 · Raine Virta · Raine Virta_

When working with Claude Code , I often want to reference documents from my Obsidian vault. Using tmux-file-picker , you can bind a key to open a fuzzy finder in a popup, scoped to your vault's markdown files: .tmux.conf bind C-n display-popup -E "TMUX\_FILE\_PICKER\_FD\_FLAGS='-H --type f -e md' tmux-file-picker '/Users/raine/Library/Mobile Documents/iCloud~md~obsidian/Documents/raine'" The…

## [Dynamic tmux popup sizing across different displays](https://raine.dev/blog/dynamic-tmux-popup-sizing/)

_2026-01-11 · Raine Virta · Raine Virta_

tmux's display-popup is hard to size when you switch between displays. Fixed character sizes are either too small on 4K or too large on a laptop. Percentages don't help either - 60% of a 4K monitor is massive. With some help, came up with a wrapper script that uses a fancy algorithm. popup = base × (screen / reference) ^ 0.5 You set your reference screen (the one you tune on) and base sizes for…

## [My setup, and why tmux workflow is better than ever](https://raine.dev/blog/my-tmux-setup/)

_2026-01-01 · Raine Virta · Raine Virta_

tmux, circa 2011. Over the years, tmux has become an essential part of my terminal-centric workflow. For many, tmux is merely a screen replacement to be used on remote servers, but for me it's closer to a tiling window manager for the terminal. Briefly, what I think makes tmux so useful: I work on many projects at a time, and recently, with many AI agents at a time. tmux allows isolating each…

## [Using git worktrees to parallelize AI coding](https://raine.dev/blog/git-worktrees-parallel-agents/)

_2025-12-29 · Raine Virta · Raine Virta_

As a continuation of the earlier post that introduced workmux , here's a useful pattern for delegating tasks to worktree agents. # The workflow in a nutshell The workflow uses a main agent on the main branch to brainstorm and dispatch tasks, while worktree agents run in separate worktrees. Brainstorm tasks with the main agent Refine the items, by yourself or with the help of the agent Delegate…

## [Resolve merge conflicts with Claude Code](https://raine.dev/blog/resolve-conflicts-with-claude/)

_2025-12-26 · Raine Virta · Raine Virta_

Merge conflicts are an unavoidable part of software development when working in a team, or even solo, especially when running multiple agents in parallel . Even if you do your best to organize work for agents so that parallel tasks don't touch the same area of the codebase, conflicts will invariably occur at some point. Fortunately, the agent you built the feature with can probably resolve the…

## [workmux: git worktrees + tmux for parallel AI agents](https://raine.dev/blog/introduction-to-workmux/)

_2025-12-25 · Raine Virta · Raine Virta_

Recently, with AI-assisted coding gaining momentum, a long-standing and not that well-known git feature is finding new relevance. The feature is git worktrees , the ability to have multiple branches checked out simultaneously, each in its own directory. Running multiple agents in parallel is becoming increasingly common, and agents benefit from the isolation worktrees provide. If agents share the…

## [Ship software peacefully (Sponsored)](https://crawlproof.com/a/SN5qeaFzSCIK)

_2025-12-24 · **Sponsored**_

Deploy apps from your repo with auto-config, instant previews, scaling, and monitoring.

## [tmux tip: Add file paths to context with fzf in Claude Code](https://raine.dev/blog/tmux-file-picker-for-ai-agents/)

_2025-12-21 · Raine Virta · Raine Virta_

One of the killer features in tmux is the floating popup window. This enables all kinds of interesting workflows, because with a mapping of your choice, you can spawn any process in a floating window on top of your panes. This process will inherit the current pane's working directory, has all the tmux APIs etc. at its disposal, so all kinds of cool things are possible. Over a year ago, when I was…

## [My experience with Zola static site engine](https://raine.dev/blog/zola-static-site-experience/)

_2025-12-20 · Raine Virta · Raine Virta_

I recently converted WalkingMate's website from plain HTML to use Zola which is a static site engine written in Rust. As the number of pages grew from just one, the lack of templating started to be a problem for development experience. Duplicating the navigation and footer in every page is annoying because they can start to diverge by accident. I chose Zola for no particular reason, but the fact…

## [Making Keychron K3 Pro behave like Apple Magic Keyboard](https://raine.dev/blog/keychron-k3-pro-apple-magic-keyboard/)

_2025-12-15 · Raine Virta · Raine Virta_

My keyboard setup lately has been that I use Apple Magic Keyboard for work on the Mac, and Keychron K3 Pro for gaming on the PC. Just recently, a key fell off from the Apple keyboard and it had to be sent in for a repair which will likely take at least 2 weeks. For this reason, I'm now trying to make the Keychron as similar to the Apple Keyboard as possible to reuse muscle memory. Previously, I've…

## [Edge City Patagonia 2025: Month in Review](https://edgecitypatagonia2025.substack.com/p/edge-city-patagonia-2025-month-in)

_2025-12-01 · Timour Kosters · Edge City Patagonia 2025_

Four weeks of building, living, and co-creating together in Argentina.

## [San Martín de los Andes: Outdoor Adventure Guide](https://edgecitypatagonia2025.substack.com/p/san-martin-de-los-andes-outdoor-adventure)

_2025-10-30 · sophiemofie · Edge City Patagonia 2025_

The best places to connect with nature at Edge City Patagonia

## [Week 1 Recap of Edge City Patagonia](https://edgecitypatagonia2025.substack.com/p/week-1-recap-of-edge-city-patagonia)

_2025-10-29 · Menno van Ginkel · Edge City Patagonia 2025_

Highlights from the first week of building, community experiments, residency activities, and life in the popup village.

## [The 2025 Edge City Patagonia Fellows](https://edgecitypatagonia2025.substack.com/p/the-2025-edge-city-patagonia-fellows)

_2025-10-23 · Sofia Scarlat · Edge City Patagonia 2025_

Introducing five young builders reshaping the frontiers of technology, science, and culture.

## [World Payment & Mobile Experiment at Edge City Patagonia](https://edgecitypatagonia2025.substack.com/p/world-payment-and-mobile-experiment)

_2025-10-21 · Telamon Ardavanis · Edge City Patagonia 2025_

More details on our monthlong experiment with crypto-native society infrastructure.

## [A Note to the Edge Community](https://edgecitypatagonia2025.substack.com/p/a-note-to-the-edge-community)

_2025-10-20 · Janine Leger · Edge City Patagonia 2025_

Living on the edge of what’s possible, both together and apart.

## [Experiment List for Edge City Patagonia](https://edgecitypatagonia2025.substack.com/p/experiment-list-for-edge-city-patagonia)

_2025-10-19 · Timour Kosters · Edge City Patagonia 2025_

Your guide to frontier experiments happening throughout the month

## [Licensed Dispensaries, Pay with Crypto (Sponsored)](https://crawlproof.com/a/AlzjhHTREEcf)

_2025-10-19 · **Sponsored**_

Search verified licensed dispensaries and pay with Bitcoin, Lightning, or stablecoins.

## [The Opening Weekend of Edge City Patagonia 2025 (Plus, a Day & Week in the Life)](https://edgecitypatagonia2025.substack.com/p/the-opening-weekend-of-edge-city)

_2025-10-17 · sophiemofie · Edge City Patagonia 2025_

Welcome & orientation programming for your arrival in San Martín de los Andes

## [Local Partners and Discounts for Edge City Patagonia](https://edgecitypatagonia2025.substack.com/p/local-partners-and-discounts-for)

_2025-10-14 · sophiemofie · Edge City Patagonia 2025_

A guide to local businesses, restaurants, and providers we've partnered with or recommend in San Martin de los Andes 🏔️

## [How to Use Social Layer (Our Shared Calendar) & How to Run a Great Session](https://edgecitypatagonia2025.substack.com/p/introducing-our-shared-calendar-social)

_2025-10-10 · sophiemofie · Edge City Patagonia 2025_

How to use the community calendar, see what's going on, and organize your own events.

