Skip to content

Instantly share code, notes, and snippets.

@kid-pro-kuo
kid-pro-kuo / ha-uninstall.sh
Created September 9, 2025 04:20 — forked from stemsmit/ha-uninstall.sh
Uninstaller for Home Assistant Supervised on Debian 10
#!/usr/bin/env bash
sudo systemctl disable apparmor
sudo systemctl disable hassio-apparmor.service
sudo systemctl disable hassio-supervisor.service
sudo systemctl daemon-reload
sudo systemctl reset-failed
sudo rm /etc/systemd/system/hassio-supervisor.service
sudo rm /etc/systemd/system/hassio-apparmor.service
@kid-pro-kuo
kid-pro-kuo / ffmpeg.md
Created May 23, 2025 16:42 — forked from steven2358/ffmpeg.md
FFmpeg cheat sheet
@kid-pro-kuo
kid-pro-kuo / contact-sensor-left-open-notification.yaml
Last active January 17, 2025 23:44 — forked from Raukze/contact-sensor-left-open-notification.yaml
Home Assistant Blueprint: Contact Sensor Left Open Notification
blueprint:
name: 🚪 Contact Sensor Left Open Notification by kid-pro-kuo
description: |
📲 Notifies you when a door or window is left open.
🚀 Forked from Version 2024.04.23.1 by Malte (https://gist.github.com/Raukze/27fe0c6bf6d91b8ae2ab5e11880509ba)
Are you tired of worrying about open doors or windows? This blueprint has got you covered! It's designed to send you a prompt notification when a door or window remains open for a specified duration.
📖 For Details see this [Blog post](https://community.home-assistant.io/t/contact-sensor-door-or-window-left-open-notification/652571)
@kid-pro-kuo
kid-pro-kuo / .gitignore
Created October 24, 2024 16:10 — forked from bloombar/.gitignore
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@kid-pro-kuo
kid-pro-kuo / beet-config.yaml
Created August 4, 2024 00:55
Personal config for beets, cobbled together from other users' content and polished with my blood, sweat and tears
directory: /Volumes/AL-NILAM/Music
# --------------- Main ---------------
library: /Volumes/AL-NILAM/Music/musiclibrary.db
asciify_paths: yes
# --------------- Performance ---------------
threaded: yes
{
"basics": {
"name": "Sebastien Kuo, PgMP",
"label": "Seasoned Localization Professional • Demophile • Champion of belonging • Amateur cook and yes, come to my DJ night too",
"picture": "profile.png",
"email": "<a href=”mailto:sebastien@linguanaut.org?subject=Let%27s%20connect%3F” target=”_blank” rel=noopener noreferrer””>sebastien@linguanaut.org</a>",
"website": "http://www.linguanaut.org",
"summary": "Experienced yet adaptive localization professional comfortable with engagements of all shapes and sizes. I can be a one-man producer to help a small company find its global footing or be a part of a team of varying sizes contributing to shared objectives. I can even help design localization programs from the ground up through thoughtful knowledge gathering, awareness of both industry standards and bleeding edge technologies, bold leadership, cultivated cross-functional relationships and ultimately, offering a rich portfolio of services as needed and as allo
@kid-pro-kuo
kid-pro-kuo / generate-ssh-key.sh
Last active July 31, 2020 22:17 — forked from grenade/01-generate-ed25519-ssh-key.sh
Correct file permissions for ssh keys and config.
ssh-keygen -t rsa -b 4096 -N '' -C "$USER_EMAIL" -f ~/.ssh/id_rsa
ssh-keygen -t rsa -b 4096 -N '' -C "$USER_EMAIL" -f ~/.ssh/github_rsa
@kid-pro-kuo
kid-pro-kuo / setup.sh
Created July 11, 2020 07:27 — forked from bradp/setup.sh
New Mac Setup Script
echo "Creating an SSH key for you..."
ssh-keygen -t rsa
echo "Please add this public key to Github \n"
echo "https://github.com/account/ssh \n"
read -p "Press [Enter] key after this..."
echo "Installing xcode-stuff"
xcode-select --install
@kid-pro-kuo
kid-pro-kuo / free_ports.sh
Created June 22, 2020 09:20 — forked from hjbotha/free_ports.sh
Free ports 80 and 443 on Synology NAS
#! /bin/bash
# NEWLY ADDED BACKUP FUNCTIONALITY IS NOT FULLY TESTED YET, USE WITH CARE, ESPECIALLY DELETION
# Steps to install
# Save this script in one of your shares
# Backup /usr/syno/share/nginx/ as follows:
# # cd /usr/syno/share/
# # tar cvf ~/nginx.tar nginx
# Run this script as root
# Reboot and ensure everything is still working
#!/usr/bin/python
# Guess My Number
#
# The computer picks a random number between 1 and 100
# The player tries to guess it and the computer lets
# the player know if the guess is too high, too low
# or right on the money
import random