How to Use a Custom Domain as a Bluesky Handle

I’m going to using CPanel so it maybe a little different on your end. Head over to Bluesky and go to Settings and click Change Handle, then I have my own domain. You have two different ways to verify your domain ownership. 

DNS Panel

The first and easiest way (with CPanel at least), providing you have access to DNS settings. Open CPanel and go down to Domains > Zone Editor and then click Manage on the domain you wish to use. Click the little down arrow next to Add Record, and select Add “TXT” Record and fill in your information like so:

No DNS Panel

The other way is to upload a file to .well-known. In CPanel its pretty easy to find, Open Files > File Manager and then you can just search for it in the top left. You either need to search for:

public_html/.well-known OR .well-known OR yourdomain.com/.well-known 


In my case it’s in the public_html folder. It’s usually where you store your websites files. We need to create the file, on windows you can just make a text file on the desktop, name it atproto-did and remove the .txt extension. Right click the file and open with Notepad and paste in the text Bluesky requires. I’m on a Mac, so I used CotEditor to create my atproto-did (just click File > Save and remove the “.txt” part) file and then uploaded it via the CPanel File Manager

Time to Verify

Click either Verify DNS Record or Verify Text File, and you should get a message like below. If it fails, just double check that you’ve not add any spaces in the pasted text and that you are doing it with the correct domain. Feel free to contact me on Bluesky if you get stuck.

Baldur’s Gate 3 MacOS: Changing CMD+Q

Sick of accidentally quitting Baldur’s Gate 3? Here’s how to change the quit app shortcut.

 > System Preferences > Keyboard > Keyboard Shortcuts… > App Shortcuts and then click the + icon.

Under Application scroll to Other… and Press CMD+Shift+G and paste the following and press Enter.
~/Library/Application Support/Steam/steamapps/common/Baldurs Gate 3
Then press Enter and select the Baldur’s Gate 3 icon.

Into the Menu Title section copy and paste without quotes “Quit Baldur's Gate 3" Make sure this is correct otherwise it will not work. Then create yourself a shortcut. I use ^⌥⌘Q (Control+Option+CMD+Q)

BBC micro:bit Creating an EddyStone Beacon

There’s multiple uses for beacons, if you own your own shop you can use a beacon to give special offers, and maybe even vouchers. Small independent art galleries could use beacons to interact with guests to show them a snippet of video on each piece. By using the BBC micro:bit you can easily create your own for not so much money!

Plug in your BBC micro:bit, and head over to Espruino and download the latest micro:bit hex file, or download 1v95 below.

Download “espruino_1v95_microbit.hex” espruino_1v95_microbit.hex – Downloaded 549 times – 680.66 KB

Drag and drop it on your micro:bit to install it.

Next pick yourself up the mbed driver and install it. Next in Chome you need to use Espruino.

Once opened click the little plug icons in the top right and select mbed Serial Port.

You can use this Eddystone URL Generator to direct to your own URL.  Make sure you also shorten your chosen URL too! You can use goo.gl. Here’s mine below using -5 Tx power. Paste your code between eddyStoneData = [ and ];

eddyStoneData = [
 0x03, // Length of Service List
 0x03, // Param: Service List
 0xAA, 0xFE, // Eddystone ID
 0x13, // Length of Service Data
 0x16, // Service Data
 0xAA, 0xFE, // Eddystone ID
 0x10, // Frame type: URL
 0xFB, // Power
 0x03, // https://
 'g',
 'o',
 'o',
 '.',
 'g',
 'l',
 '/',
 'r',
 'W',
 '5',
 'g',
 'U',
 'o',
 ];

NRF.setAdvertising(eddyStoneData, {interval:100});

Click the upload button (in the middle, the chip with the arrow) and you should be done! Check your phone and you should receive a notification like this:

Stuck? Have a question? Feel free to contact me either using the comments below or @imwestm on Twitter.