Terence Eden. He has a beard and is smiling.

Terence Eden’s Blog

Theme Switcher:

Add .ics events to your main Google Calendar

· 6 comments · 350 words · Viewed ~280 times


The Google Logo.

Google Calendar is one of the cornerstones of G-Suite. Sadly Google don't dedicate enough resources to develop into its full potential. Other than a new icon and forced Google Meet integration, it hasn't had many improvements recently. Leaving it to the community to pick up the pieces. Here's how to get an external calendar integrated with your internal calendar. Why is this useful? I'm…

Screen recording on Wayland / Pop_OS

· 250 words · Viewed ~601 times


Unix is user-friendly — it's just choosy about who its friends are.

One of the annoying things about being on the bleeding edge, is that some things don't work as you expect. I use the Wayland Display Server on my Linux box. And I couldn't find a simple screen recorder which worked. Turns out, Gnome has a hidden screen recorder! To activate it, press these keys simultaneously. CTRL+ALT+SHIFT ⇪+R A small circle icon will appear in your tray to show it is r…

Anatomy of my perfect ls command

· 4 comments · 350 words · Viewed ~572 times


Unix is user-friendly — it's just choosy about who its friends are.

Mostly notes to myself. Nestled away in my Linux Bash profile, I have this one-liner alias lh='ls -trhgGN --color=always | cut -d" " -f4-' When I run lh it outputs a list of files in the directory, showing their size, with the newest files on the bottom. I use this regularly to see what I've downloaded recently and how big the files are - so I made an alias. Here's how it works. Alias …

Cisco AnyConnect for Linux - save profile

· 1 comment · 100 words · Viewed ~2,234 times


Binary code displayed on a screen.

I couldn't find a simple guide to this - so these are notes to myself. Create a file called myVPN.xml: <?xml version="1.0" encoding="UTF-8"?> <AnyConnectProfile xmlns="http://schemas.xmlsoap.org/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schemas.xmlsoap.org/encoding/AnyConnectProfile.xsd"> <ServerList> …

OMG! Twitter release an OFFICIAL conversations API!

· 4 comments · 850 words · Viewed ~1,978 times


An organic, branching tree view of a conversation.

One of the most requested Twitter API features is now available - the ability to get replies to a Tweet as a thread. Long time readers know that I've long been a fan of Visualising Twitter Conversations in 2D Space. But up until now you had to use horrible hacks to get the data. As trailed in their recent blogpost - conversation threading is now part of the official API! This allows you to…

Adding SIP calls to Android - for free!

· 8 comments · 650 words · Viewed ~1,352 times


Config setting screen.

SIP is a stupid acronym. It's basically a standard way of making phone calls over the Internet. This means you can make and receive phone calls over WiFi. Here's how I got it working - for free - on Android. By the end of this tutorial you will be able to: Receive calls to a new phone number, sent via WiFi to your Android handset. Receive calls to your existing phone number, redirected to…

My triple screen set-up for effective online presentations

· 4 comments · 900 words · Viewed ~773 times


A computer with three screens.

I recently gave an online presentation at Tech Nottingham. It went off without a hitch, and I got some great feedback. I'd like to briefly discuss the tech that I used to make it all work. Here's "mission control": On the left portrait monitor, I had two windows. The top one was Zoom, running in Chrome (more on that later). This was what I was presenting from. I kept it on screen so that I…

Howto: Disable image pop-ups in WordPress comments

· 150 words


An mshots popup obscuring the screen.

If you have the Akismet spam plugin for WordPress, you'll be familiar with this problem. When your mouse pointer goes over any URL, you get a large website preview taking over parts of your screen. I asked for a way to turn this off and I'm happy to say the developers listened! Sadly, there's no tickbox option, only a WordPress filter so you'll have to add the following scrap of code to your…

Better Keyboard Buttons in CSS

· 2 comments · 150 words · Viewed ~1,451 times


A pet cat typing on a computer keyboard.

Here's a simple scrap of CSS which you can Ctrl+C and Ctrl+V kbd { border: .1em solid #aaa; border-radius: 15%; display: inline-block; padding: .1em .5em; background: linear-gradient(180deg, #fff, #fff, #fff, #ddd); user-select: none; cursor: pointer; color: #000; font-weight: bold; } kbd:hover { background: linear-gradient(0deg, #fff, #fff, #fff, #ddd); } …

Semantic Dates in Wagtail Blog Posts

· 250 words


The HTML5 Logo.

(Written because I couldn't find an easy guide online.) Here's the code (formatted for readability): <time datetime="{{page.first_published_at|date:"c"}}"> {{page.first_published_at|date:"j F Y"}} </time> You can also use last_published_at if it is a page which has been updated. WHY?!??! Semantics. HTML5 contains the <time> element. The contents of it show up as normal running text, but…

LED strips for under-bed lighting

· 5 comments · 250 words · Viewed ~610 times


Lights threaded over slats.

When we moved house, we found the previous owners had installed under-cupboard lighting in the kitchen. It uses basic and cheap 12V LED strips. The strips are flexible and have glue on the back. We didn't like them in the kitchen. So we tried them on the stairs. Terence Eden is on Mastodon@edentTrying to work out where I want LED strips.The "aeroplane emergency lighting" look on the stairs…

Finding your most popular Tweets

· 1 comment · 150 words


The Twitter logo drawn in circles.

Twitter's search interface has all sorts of lovely and obscure options. My three favourites are "min_retweets:", "min_replies:", and "min_faves:" Using those filters, you can create a search for Tweets which meet a certain threshold. For example, here are my Tweets which have been liked more than 500 times: twitter.com/search?q=from:edent min_faves:500 Here are the ones which have been…