Blackbird Knob Trailhead FR 80 and Canaan Wildlife Refuge
Heading up the back way to the Dolly Sods Wilderness.
Heading up the back way to the Dolly Sods Wilderness.
In Upstate New York, you can find ripe wild strawberries (Fragaria virginiana) from early June through early July. While the plants flower in May, the tiny, intensely sweet berries ripen just as the late spring transitions into summer.
Wild strawberries grow low to the ground and need plenty of sunlight to bear fruit. You will find them most commonly in well-drained, open areas rather than dense, dark woods.
I’m staring at my shiny new 2026 Ford F-350, and all I see is a countdown.
People raise an eyebrow when I say this is likely the last rig I’ll ever buy before I punch out from the state. To them, 2040 feels like a sci-fi movie. To me, it feels like next Tuesday. In fourteen years, I’ll be fifty-seven, backed by three decades of state service and a Tier 4 pension that says I don’t have to answer to anyone. If the math holds and the markets don’t implode, I’ll be sitting on a net worth that could buy a “vinyl-covered” life in the suburbs—the kind with the 72-degree HVAC, weekly trash pickup, and a porch cluttered with Amazon boxes.
While the rest of the world is busy paying for high-speed internet and utility bills that never end, I’m scouring listings on NY Land Quest and Christmas Associates. I’m not looking for a McMansion; I’m looking for the “backwaters.” I’m looking for a place where the only recurring fee is property tax and the only “smart” thing I own is the phone in my pocket to check the weather.
The dream is simple: fires and guns. Livestock that I’ve raised, hunted, and butchered myself. I want a life that isn’t wrapped in cellophane and sold back to me at a markup. I want pigs, goats, and maybe a few head of cattle on a patch of land where a burn barrel isn’t a legal liability and my constitutional rights aren’t up for debate.
Every time I fire up this truck to commute through the city, I feel the wear and tear—not just on the engine, but on the vision. Right now, every trip to the woods is a “burden,” a logistical dance of fuel costs and travel time. By 2040, I want to be in it. I want to trap and homestead full-time, trading the bus pass and the bike commute for a pair of hog shit-covered farm boots and a quiet morning somewhere far beyond the New York border.
Of course, fourteen years is a long time for things to go sideways. A market crash, a catastrophic wreck, or a literal bus with my name on it could end the dream before the first post-hole is dug. There’s also the nagging voice that says fifty-seven is too young to toss the hat in. Maybe 2041 will offer some “interesting opportunity” that keeps me at the desk for one more year of golden handcuffs.
But then I look at this truck again. I built my last camping rig fourteen years ago, and it feels like it happened yesterday. Time isn’t just moving; it’s accelerating.
Some people spend their lives buying things they’ll eventually throw away. I’m spending mine building a future where I don’t have to buy anything at all. 2040 isn’t just a retirement date—it’s the year I finally go home.
Starting in September 2026, Google is modifying the Android OS to prohibit side-loading of apps on your phone in any way but using the official Google Play Scam Store or via a computer and Android Debug Bridge ADB program. They say it’s to prevent viruses from being installed on your phone, but the real truth is it’s to prevent ad blockers and unapproved third party apps like Brave Pipe from being easily installed on your phone.
While somewhat inconvient to have to plug your phone into a computer or pair via Wi-Fi, it’s actually not that challenging to continue to sideload apps using a ADB. For installing Android apps using ADB on Linux, use the adb install command followed by the path to your APK file.
First, open your terminal and install the ADB tool using your distribution’s package manager:
sudo apt update && sudo apt install android-sdk-platform-tools sudo dnf install android-tools sudo pacman -S android-tools For comprehensive platform details, read the guide on how to install ADB on Windows, macOS, and Linux on XDA. Alternatively, you can read the step-by-step setup overview on It’s FOSS.
Verify your computer can communicate with the phone by typing:
adb devices
Check your Android phone screen. A prompt will appear asking you to Allow USB Debugging. Check the box for “Always allow from this computer” and tap Allow. The terminal output should change from unauthorized to device.
To deploy the application, run the installation command pointing to the exact path of the downloaded .apk file on your computer:
adb install /path/to/your/app.apk
adb install app.apk.Performing Streamed Install and then output Success once finished. adb install -r app.apk to reinstall or update an app while keeping its local data.adb install-multiple app1.apk app2.apk if your app comes packaged in multiple segments.adb install -d app.apk to replace a newer version with an older version.