messing around with a bunch of animation prefabs because it's funny
seen from United States
seen from South Korea

seen from Germany
seen from United States
seen from Brazil

seen from Germany

seen from Germany
seen from China
seen from Greece

seen from Germany
seen from United States

seen from United States

seen from Germany

seen from United States
seen from Argentina

seen from Germany

seen from Germany

seen from Germany

seen from United States
seen from China
messing around with a bunch of animation prefabs because it's funny
i started reading an article and couldn’t continue due to not having a subscription.
then i remembered. the answer lies in ✨disabling Javascript ✨
tutorial links below, for anyone who also can’t find The OG Tumblr Post:
Ao3 fake dark mode:
White backgrounds can be hard on the eyes. If you don’t have an account or don’t want to use a skin (or don’t know how), here’s a tip for desktop:
Open the fic you want to read (click ‘entire work’ because you’ll have to redo this if you click off the page).
Right click somewhere in the background and click ‘inspect’.
In the dev tools sidebar that opens up, in the top section with all the code and text, scroll to the top. Find the bar ‘<body class=“logged-out’ and click on it.
Scroll down in the lower left box marked ‘styles’ until you find ‘background’ with its little white colour box.
Click on the little white box and pick a new colour (I chose blue).
There we go! It’s blue! That should be easier on the eyes. (Tip: use yellow/orange at night.) You can also turn the background black and turn the text white (it’s just underneath the background box) for a dark mode.
This works on all Ao3 pages, and on most sites if you know where to find the boxes. This little trick only takes 10 seconds once you learn where to click. Don't worry: if you mess it up, just hit refresh.
Happy reading!
(Note: the fic in the screenshots is A Dark Mode Site Skin for AO3 by cherryblossom, which I assume is a good tutorial if you want to log in and use skins instead. Here, I didn't.)
(EDIT: nowadays some browsers allow a selection of skins on Ao3 very easily: look at the very bottom left of the webpage. This should work on mobile!)
Ubuntu + Nvidia Cuda Toolkit
Hotfixes for Alpha v0.4.0-dev
6/5/17Download source
So we had some minor build errors with the Travis CI service we use for continuous integration (CI) and cloud testing. Continuous integration and cloud testing is incredibly important in current software development, so fixing these build issues are vital to us at OpenRPG. What cloud testing with Travis CI allows us to do is test OpenRPG in enviroments we normally wouldn't have the opprotunity to test on.
Two hotfixes have been released since Wednesday (5/31/17). The first hotfix was released the same day, and I even snuck in a link change in the Alpha v0.4.0-dev release post, found here. The second hotfix was released this passed Friday (6/2/17) and fixed a very specific build issue with GCC compilation on Linux. Below you can find the change notes for each hotfix that was released for Alpha v0.4.0-dev
4 new Dev Tools Added
Qtractor - Music tracker
ToddlerBot - open-source humanoid robot platform
LibreSprite - Animate sprites
Zvec - Vector database
The Best Free API Development Tools Compared
For years, Postman owned the API development workflow. Then it started gating collaboration features behind paid plans, requiring cloud accounts for basic collection sharing, and adding friction everywhere. Developers started looking around and found that the alternatives had quietly become excellent.
Here's an honest comparison of the best free API development tools available right now, covering what each does well and where each falls short.
Hoppscotch: Fastest to Start, Best for Teams on a Budget
Hoppscotch runs entirely in the browser with no install required. Open it, paste an endpoint, send a request. It supports REST, GraphQL, WebSocket, Server-Sent Events, and gRPC — all from the same interface.
The collaboration model is what separates it: collections export as JSON files that live in your repository alongside your code. There's no proprietary sync account required. Every developer clones the repo and has the full API workspace immediately.
Best for: teams that want version-controlled API collections without cloud lock-in.
Limitation: no built-in mock server. You'll need a separate tool for that.
Bruno: Git-Native API Client Built for Developers
Bruno is the most interesting entrant in this space. It stores collections as plain text files in a custom markup format (bru files) designed to be human-readable and diffable in pull requests.
Every request is a file. Collections are directories. You git commit your API workspace the same way you commit source code. For teams doing website development in Hanover Park, Illinois or building client-facing APIs where documentation and testing evolve together, Bruno's file-based approach means API specs and application code stay in sync naturally.
Best for: developer-first teams where API collections belong in version control.
Limitation: smaller ecosystem than Postman; fewer integrations out of the box.
Insomnia: Clean UI, Solid GraphQL Support
Insomnia offers the most polished desktop experience of the free-tier options. Its GraphQL support is particularly strong, it introspects schemas automatically, provides field-level autocomplete, and displays documentation inline while you build queries.
The environment variable system is well-designed: define base URLs, auth tokens, and shared variables at the workspace level, then override them per environment without duplicating request definitions.
Best for: GraphQL-heavy projects and developers who prioritize UI quality.
Limitation: Kong (Insomnia's owner) has been shifting features to paid tiers worth monitoring before committing deeply.
REST Client (VS Code Extension): The Zero-Friction Option
If you're already in VS Code, the REST Client extension eliminates the context switch entirely. Write requests in .http files, send them with a keyboard shortcut, and see responses rendered inline.
Chain requests using response variables. Commit .http files as living API documentation. Developers doing website development in Oswego, Illinois who maintain multiple client project repos find this approach particularly practical, the API workspace travels with the project, no separate application needed.
Best for: solo developers or teams already standardized on VS Code.
Limitation: no GUI request builder; comfort with writing raw HTTP syntax required.
Which One Should You Use?
The honest answer: Bruno for teams, REST Client for individuals already in VS Code. Both are fully free with no cloud accounts, no seat limits, and no features being held hostage behind a paywall.
Postman still has the largest ecosystem and the most integrations. But for pure API development workflow - building, testing, and documenting requests - the free tools above have closed the gap entirely.
Developer Tools I Wish I Had Found Years Ago
Every developer has a moment where they discover a tool and immediately think: why didn't I know about this three years ago? The debugging session that took six hours could have taken twenty minutes. The repetitive task you scripted from scratch already had a solution. The performance problem you guessed at had a profiler built for exactly that.
Here are the tools that genuinely changed how I work — not because they're clever, but because they solve real problems faster than anything I used before them.
Warp: A Terminal That Finally Makes Sense
Most developers accept the terminal as inherently hostile. Warp changes that assumption. It treats terminal output as structured blocks rather than a continuous text stream — each command and its output are grouped, scrollable, and individually copyable.
The feature that sticks: command history is searchable with fuzzy matching, and Warp's AI can explain what a command does before you run it. For complex one-liners built from Stack Overflow, that alone prevents embarrassing mistakes in production environments.
Proxyman for Network Inspection Beyond the Browser
Chrome DevTools covers browser traffic. Proxyman captures everything — desktop apps, iOS simulators, background processes, CLI tools making HTTP calls. It intercepts, displays, and lets you modify requests and responses in flight.
When debugging a mobile app's API calls or a CLI tool hitting an endpoint unexpectedly, Proxyman surfaces what's actually being sent — headers, body, timing — without any instrumentation code. Teams working on website development in Wheeling, Illinois and similar markets increasingly deal with hybrid app stacks where browser DevTools only shows half the traffic picture.
Hoppscotch: Open-Source API Client That Lives in the Browser
Postman accumulated years of feature bloat. Hoppscotch is fast, open-source, and runs entirely in the browser — no desktop install required. It handles REST, GraphQL, WebSocket, and gRPC testing with a clean interface and shareable collection links.
The real advantage: collections export as JSON files you can commit to your repository, turning API documentation into living, runnable specs the whole team shares.
Datadog APM for Finding the Slow Thing in Production
console.log timing works in development. In production, distributed traces across microservices, databases, and third-party APIs require something built for the problem. Datadog's APM generates flame graphs from live production traffic, showing exactly where latency originates, which database query, which downstream service call, which code path.
Developers doing website development in Carpentersville, Illinois who suddenly inherit a slow legacy platform find that APM turns a guessing game into a precise diagnosis within minutes.
The Pattern Behind Every Tool on This List
None of these tools are magic. They share one quality: they make invisible things visible network traffic, test flakiness, production latency, terminal history. The hours lost debugging before finding them weren't wasted on hard problems. They were wasted on unknowns that already had solutions.
Find the tool that makes your current unknown visible. That's always the move.