It's time someone compiled a list of nationalities to use within a web application. This gist attempts to make a first move at that.
I've also compiled a list of countries
It's time someone compiled a list of nationalities to use within a web application. This gist attempts to make a first move at that.
I've also compiled a list of countries
| # download ubuntu-cloud image | |
| # NOTE: ubuntu-server won't properly work with cloud-init for some reason | |
| wget https://cloud-images.ubuntu.com/focal/current/focal-server-cloudimg-amd64.img | |
| # NOTE: no need for sudo because we already login as root | |
| # install image customization tool | |
| apt update -y && apt install libguestfs-tools -y | |
| # install qemu-guest-agent inside of image |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>KeepAlive</key> | |
| <true/> | |
| <key>RunAtLoad</key> | |
| <true/> | |
| <key>Label</key> | |
| <string>homebrew.mxcl.aria2</string> |
| #!ipxe | |
| ### | |
| ### codybunch.lab custom menu example | |
| ### | |
| :custom | |
| clear custom_choice | |
| menu ESXi | |
| item --gap Boot ESXi Installer | |
| item esxi_70_kickstart ${space} 7.0 Automated Install |
| version: "3.9" | |
| # Install docker on Linux | |
| # curl -fsSL https://get.docker.com | sudo sh | |
| # Variables to fill in: | |
| # Line 44: <LETSENCRYPT_MAIL_ADDRESS> - your mail address for contact with Let's Encrypt | |
| # Line 57: <TRAEFIK_DASHBOARD_ADMIN_PASSWORD> - MD5 hash of your password (use http://www.htaccesstools.com/htpasswd-generator/) | |
| # Line 76: <POSTGRES_PASSWORD> - the password for the postgres db. Use the same during mastodon:setup! | |
| # Lines 52, 110, 136: <DOMAIN> - e.g. social.yourdomain.com (Must have an A record pointing to your box' IP) (AAAA for IPv6 ;) |
| mkdir /mnt/wasabi-cache | |
| lvcreate -L 100G -n wasabi-cache vg0 | |
| mkfs.ext4 /dev/vg0/wasabi-cache | |
| docker run -d -p 9000:9000 --name minio-wasabi -e "MINIO_CACHE_DRIVES=/mnt/wasabi-cache" -e "MINIO_CACHE_EXPIRY=40" \ | |
| -e "MINIO_ACCESS_KEY=AKKEYKEYKEYKEYKEY" -e "MINIO_SECRET_KEY=mysecret123123123123123" \ | |
| minio/minio gateway s3 https://s3.wasabisys.com:443 |
| const BearerTokenKey = 'twitterBearerToken'; | |
| function onOpen() { | |
| SpreadsheetApp | |
| .getUi() | |
| .createMenu('Twitter') | |
| .addItem('Set Bearer token', 'helpers.requestBearerToken') | |
| .addItem('Sign out', 'helpers.logout') | |
| .addToUi(); | |
| } |
| <# | |
| .SYNOPSIS | |
| Script to Initialize my custom powershell setup. | |
| .DESCRIPTION | |
| Script uses scoop | |
| .NOTES | |
| **NOTE** Will configure the Execution Policy for the "CurrentUser" to Unrestricted. | |
| Author: Mike Pruett | |
| Date: October 18th, 2018 |
| # ## Overview | |
| # Instructions on how to game in the cloud inspired by: | |
| # https://lg.io/2015/07/05/revised-and-much-faster-run-your-own-highend-cloud-gaming-service-on-ec2.html | |
| # https://medium.com/@bmatcuk/gaming-on-amazon-s-ec2-83b178f47a34 | |
| # | |
| # ## Additional reading | |
| # https://gstreamer.freedesktop.org/documentation/tutorials/basic/streaming.html?gi-language=c | |
| # https://trac.ffmpeg.org/wiki/StreamingGuide |