-
Remote Whiteboarding for Online Meetings
Friday, March 26, 2021
With the majority of meetings and architecture sessions transitioning to online and remote in the past year, I’ve had to rethink how I handle remote design sessions and whiteboarding. In the past, I’d just draw on the screen of my Surface Book. This wasn’t a huge deal since I frequently was tossing the laptop in a bag a few times a week so it was always accessible. After switching to only working from my home office, though, I needed to make some adjustments to my workspace to make it more comfortable and to improve the sound and video for online meetings.…
-
Awesome, Lesser Known Azure CLI Extensions
Saturday, February 20, 2021
As awesome as Azure CLI / azcli is out of the box, did you know that there are a couple of lesser known extensions that can really make a difference in your daily workflow? Today I want to highlight three extensions that I use quite frequently, FZF, Self-Destruct and Show-Deployment. FZF for Azure CLI What is it? FZF is a command-line fuzzy finder that can be used on practically any list.…
-
Managing Python Versions on Windows with pyenv-win
Monday, January 18, 2021
Inspired by Matt Broberg’s post outlining the right way to install python on MacOS, this is the approach I use to manage python versions on Windows. Disable the existing app execution alias for python. By default, if you type python in the terminal and it’s not installed, it’ll prompt you to install it from the Microsoft Store. This isn’t the behavior we want, so we need to disable it. Hit the Windows Search icon and search for ‘Manage App Execution Aliases’ - after launching it, click on the two sliders for ‘App Installer’ marked ‘python.…
-
PSReadLine for Light Mode Terminals
Saturday, January 2, 2021
Over holiday break, I took the opportunity to rebuild my aging 2015 MacBook Air. As part of that, I installed PowerShell Core (to run the AZ PowerShell module, naturally) and the default color scheme for psreadline on MacOS is… awful. I mean, yellow on white isn’t legible on the best of days. As I finished up the reinstall, I decided I wanted a PowerShell color scheme that matched the Material Theme for iTerm 2.…
-
Azure Files for Linux - Shared Non-Root Access
Wednesday, January 15, 2020
Recently, one of my co-workers asked whether anyone had experience accessing Azure Files from Linux but without using root or wide open permissions. After looking at the documentation as well as the connect tab in the portal, neither mounted the Azure Files instance with permissions outside of root only access or 0777. After a bit of testing, this is what I developed relative to restricting access to the mounted files instance to a specific group (along with creating test users and groups to demonstrate it).…