How to Use an Android Phone Camera in OBS
Aleksandr Hovhannisyan
Mirror your phone's camera to your computer with scrcpy, and record it with OBS.
Aleksandr Hovhannisyan
Mirror your phone's camera to your computer with scrcpy, and record it with OBS.
Hallucination Station
Software UX has been built around make it easy to do things. It's shifting towards make it easy to say what you want.
Hallucination Station
Why build a RAG pipeline when AI can already do most of the work for you?
Hallucination Station
AI makes checking claims cheaper than making them. A penny-rounding simulation proves the point.
Hallucination Station
Agents + CLIs + skills is the core of the future - nobody has figured out the right human interface for that yet
Hallucination Station
No theory, just the setup — how I actually work with AI tools day to day
Hallucination Station
Everything else is CLIs and skills files
Alexander Thiemann
term = "xterm-256color" theme = "iTerm2 Solarized Light" # macos-titlebar-style = hidden minimum-contrast=1.05 font-size=13 font-family = "JetBrains Mono" font-thicken=true font-thicken-strength=1 adjust-cell-height=1 cursor-style=block window-padding-x=5 window-padding-y=5 # Fast startup w/...
Aleksandr Hovhannisyan
A quick guide on how to use a free and open-source tool to separate stems from audio tracks using locally installed models.
Aleksandr Hovhannisyan
Generate a sourcemap and add it to Eleventy's global data.
James Darling
It’s been 3 months since my last note, in which time I’ve become Head of Technology for the 6 digital adult national screening programmes, raised 2 kittens into young adults, built and run a new art piece, and got engaged. But that’s all very productive and too much to write about. Let’s do some...
James Darling
Throughout my 30s I have increasingly got a sore back. A couple of weeks ago it hit my sciatic nerve and I spent the next 3 days trying to find comfortable ways to lie in bed. A visit to the physio has given me the damning diagnosis of having a weak core. I now have to lie on my front and wave my...
Aleksandr Hovhannisyan
Improperly routed cables can cause the Framework 13 bezel to pop back out.
Aleksandr Hovhannisyan
Safely wipe a drive using a bootable USB and diskpart.
Aleksandr Hovhannisyan
Back up your entire WSL distribution and import it on a different machine.
Hallucination Station
A command-line utility for scraping web content through the Firecrawl API with automatic file naming and content cleaning
Aleksandr Hovhannisyan
A reference for downloading, splitting, and optimizing videos with CLI tools.
James Darling
It’s a New Year and I have plans of writing yearnotes, and liked the idea of making plans for the quarter, but then I remember I still can’t write weekly notes and its already the 12th of January, so I should accept who I am, get out of my own way and write a note already. I’ll just go backwards...
James Darling
Sometimes my brain gets so overloaded that simple decisions become too overwhelming and I start crying over what to pack for a weekend away. When this happens I have learnt that it’s helpful to empty my brain into post-it notes. This isn’t a productivity system. I have no rules. There’s no set...
James Darling
3 weeks ago I was busy building a workshop with my dad. It inevitably took more time and brainspace than anticipated. It is still not finished. But I had to stop as I had run out of dad time, I needed to get back to my life, and I needed a break. Of course I made a timelapse. Here it is: In...
Aleksandr Hovhannisyan
Bash aliases I use to speed up my workflows.
Aleksandr Hovhannisyan
Programmatically read your machine's IPv4 address on Linux.
James Darling
After last week’s introverted cerebrality, this week was social and busy. I’ve dashed from having lunches and drinks to catch up with people, to collecting second hand windows from gumtree and leftover building materials from friends for the workshop I’m building in my garden next week, to a...
James Darling
I’ve been in my brain a lot recently. This is by design: I’ve got things I want to learn and think about, and it’s been rewarding and fun. But the impact on my mental and physical health has been stark. I go to bed with a full head, and wake up with an immediate desire to scroll on my phone until...
Alexander Thiemann
Using Pipenv with Visual Studio Code (VS Code) Run pipenv --venv in the root directory of your pipenv project. It will return something like /Users/[username]/.local/share/virtualenvs/[project]-[random_string] on Mac. Put this path into the .vscode/settings.json file of your project: {...
Alexander Thiemann
GHC9.x Install on M1 mac Preqs: brew install llvm@13 Add to path export PATH="/opt/homebrew/opt/llvm@13/bin:$PATH" Install via GHCup Fix ffitarget_arm64.h not found on M1 Mac fatal error: 'ffitarget_arm64.h' file not found Fix: C_INCLUDE_PATH="`xcrun --show-sdk-path`/usr/include/ffi"...
Alexander Thiemann
Sharing files between app and app extension Need to enable App Groups (see the Capabilities of the app) and add a group extension. let groupDocumentPath = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: "group.your.group")! // ...
Alexander Thiemann
Localhost cookies not working? Omit domain and sameSite when setting localhost cookies during development – the browser will ignore the cookie entirely if set.