CloudReady

I like Chromebooks, but I want one with a lot more power. CloudReady is a rebuild of Chromium OS that will run on pretty much anything. https://www.neverware.com/freedownload I’ve tried it on a 10 year old Macbook Pro and my X230 so far. Both worked well.

New update script for Raspberry Pi

Today I dealt with the issue that all my Rasberry Pis were running a version of the OS that was quite old. This also lead to me setting up a new pihole computer, which now updates with the following script:

Notable and Mermaid

I’ve just started using Notable for writing in Markdown, largely so I can try Mermaid for creating diagrams. So far I’ve created a large piece of work-based documentation using it, and I found it instinctive and really fun to use. Links to various resources are below: Notable Mermaid Mermaid live editor (to try things out) … Read more

Multipass

This is quite exciting. I will definitely spend some time with it over the next few days. https://multipass.run/

Querying Active Directory with Powershell

View members in a group: Get-ADGroupMember -identity groupname | sort name | select-object -expand Name Same as above, but does a recursive search through all sub-groups: Get-ADGroupMember -identity groupname -Recursive | sort name | select-object -expand Name View groups a single person is in: Get-ADPrincipalGroupMembership username | select name,distinguishedName | sort distinguishedName

VMs and Sandboxes on Windows 10

Since I’ve been using Windows to do more things I’ve needed to explore new ways of getting the sort of technology I became used to in other operating systems. This is what I enable: Hyper-V (everything) Windows Hypervisor platform Windows Sandbox Windows Subsystem for Linux (and then install Ubuntu from the store) I also disable … Read more