This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# options | |
TTL="120" | |
SUBDOMAINS=(host1 host2 host3) | |
ACCESS_TOKEN="???" | |
DOMAIN="lyte.dev" | |
# constants | |
DNS_ZONE="$(<<< "$DOMAIN" sd "\." "_")" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def change do | |
# indices omitted | |
create table(:products) do | |
add(:name, :string) | |
end | |
create table(:product_attributes) do | |
add(:property, :json) | |
add(:product_type_id, :id) |
sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common -y
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
sudo apt update
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt update | |
sudo apt install apt-transport-https ca-certificates curl software-properties-common -y | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" | |
sudo apt update | |
sudo apt install docker-ce -y | |
sudo apt-get install python3 python3-pip -y | |
sudo pip3 install docker-compose |
I hereby claim:
- I am lytedev on github.
- I am lytedev (https://keybase.io/lytedev) on keybase.
- I have a public key ASBL9t_fBPHgHfXDpjdG_WvWrzywmZCE4YFQxEoEjw-dEQo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<colorTheme id="66" name="Sublime Text 2" modified="2011-01-29 11:20:12" author="Filip Minev"> | |
<searchResultIndication color="#D8D8D8" /> | |
<filteredSearchResultIndication color="#D8D8D8" /> | |
<occurrenceIndication color="#000000" /> | |
<writeOccurrenceIndication color="#000000" /> | |
<findScope color="#000000" /> | |
<deletionIndication color="#FF0000" /> | |
<sourceHoverBackground color="#FFFFFF" /> | |
<singleLineComment color="#666666" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import sys | |
def digits(digitString): | |
index = 0 | |
final = 0 | |
while index < len(digitString): | |
ds1 = digitString[index] | |
ds2 = "-1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
sudo modprobe uinput | |
sudo killall wii-u-gc-adapter | |
sudo wii-u-gc-adapter --raw & | |
dolphin-emu |
NewerOlder