Skip to content

Instantly share code, notes, and snippets.

View angus151's full-sized avatar

Angus angus151

  • Sydney
  • 19:17 (UTC +10:00)
View GitHub Profile
@serif
serif / bwclean2.py
Last active May 2, 2025 04:16
Bitwarden Duplicate Entry Remover v2
#!/usr/bin/env python3
# updated 2023-11-27
# updated 2023-10-12
# updated 2021
# updated 2020
# created 2018
import sys
import hashlib
from urllib.parse import urlparse
@Jelle-S
Jelle-S / install_ha_vb.sh
Last active February 28, 2025 15:18
Install Home Assistant on VirtualBox
# Installs Home Assistant on VirtualBox following https://www.home-assistant.io/installation/linux
# Install VirtualBox
sudo apt-get -y install virtualbox
# Create a new VM
VBoxManage createvm --name homeassistant --register
# Select OS type "Other Linux (64-bit)"
VBoxManage modifyvm homeassistant --ostype Linux_64
# Set RAM to 6GB (modify to your needs, TODO: make this an option, default value 2GB), video memory to 16MB (TODO: make this an option, default value 16MB)
VBoxManage modifyvm homeassistant --memory 6144 --vram 16
# 2 vCPUs (TODO: make this an option, default value 2)
@davidfowl
davidfowl / dotnetlayout.md
Last active June 6, 2025 15:28
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/