If you set a toggle Do Not Disturb keyboard shortcut (it’s under Mission Control) you can then use Keyboard Maestro to toggle DND when your video conferencing software is launching and quitting!
Category: Status
I’m seeing too often that a flashy solution is chosen and confusing everyone else on the team apart from the person picking the solution.
I wish Spark, but I do my own email, old skool style.
You know you have too many side projects when you have to organise them by programming language š
One of the better films Iāve seen lately and a good comment on society Bad Hair (2020).
How are other PHP developers managing the different tooling environments switching between projects?
TIL you can move sticky notes between workspaces so that you can track what activity is happening on each.
New Taskfile entry to compress a directory using xz and delete it:
xd() {
(tar -cf - $1/ | xz -9e --threads=8 -c - > $1.tar.xz && trash $1) &
}
When you keep muting / unmuting on video calls and realise it’s your belly is pressing the space bar š¬
Hello again, world.
Trump has always been about exploiting the social share. To play both sides so people can share their validated view out of context, ultimately causing extremism. Social Media needs to take responsibility.
Beatport Pro I think is still being retired on November 16. If a usable API is available I might have to build an alternative interface. I need preview history and BPM sorting.
Turns out the ASUS router firmware update check does not update to the most recent firmware!
Resolve composer.lock conflicts with composer update --lock
To replace a non-breaking space with a regular one (cause of non-functional Markdown headers), create a new BetterTouchTool trigger in the Keyboard Shortcut section and replace alt-space with space.
Cuttlefish 0.5, my hackable blogging system, has been released – https://github.com/svandragt/cuttlefish/releases/tag/0.5
When you’re getting stale NFS file handle
errors when using Docker, give /sbin/nfsd
full disk access permissions on macOS or move your projects out of the sandboxed folder (I use ~/dev
).
Started a new project āMinimum Viable Blogā, a single script PHP blog. Very WIP, very minimal. Interested? View Source
Turns out I viewed iA Writer as a creative writing tool, not a markdown note taker. My mistake, it just turns out itās the best at both. š
I want to install a go app on the raspberry pi. For which I need go. Which I thought I could conveniently install with homebrew for Linux. Which requires ruby 2.6.3+, which the pi doesnāt have. So I installed rvm and have to compile ruby from source #yakshaving