A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| #!/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 |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| 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) |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| 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 |
| 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 |
| 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 |
| #! /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 |