The SQL dump was stolen from here and imported into MySQL.
This file contains hidden or 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
Enter the following command in the Terminal window. | |
ssh-keygen -t rsa | |
This starts the key generation process. When you execute this command, the ssh-keygen utility prompts you to indicate where to store the key. | |
Press the ENTER key to accept the default location. The ssh-keygen utility prompts you for a passphrase. | |
Type in a passphrase. You can also hit the ENTER key to accept the default (no passphrase). However, this is not recommended. | |
Warning! You will need to enter the passphrase a second time to continue. |
This file contains hidden or 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
select{ | |
display: inline !important; | |
} |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
This file contains hidden or 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
xmllint --noout --schema http://import.awa.fm/music/1.0/meta_validate.rng meta.xml \; |
This file contains hidden or 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
for f in *.wav ; do ffmpeg -i "$f" -b:a 320k -acodec libmp3lame -q:a 2 "${f%.*}.mp3"; done | |
for f in *.wav ; do md5 "$f"; done | |
for f in *.wav ; do ffmpeg -i "$f" -af aformat=s16:44100 "${f%.*}.flac"; done | |
#New code for converting audio | |
for f in *.flac;do ffmpeg -i "$f" ;done |
This file contains hidden or 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
https://devopscube.com/monitor-linux-servers-prometheus-node-exporter/ | |
https://devopscube.com/install-configure-prometheus-linux/ | |
https://www.percona.com/blog/2016/02/29/graphing-mysql-performance-with-prometheus-and-grafana/ |
This file contains hidden or 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
sftp -i ~/Downloads/merlin.ppk -oPort=2324 bqcoda@ftp.um-agency.com | |
sftp -oPort=### user@server.tld | |
put -r |
This file contains hidden or 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
DROP TABLE if exists temp; | |
CREATE TABLE temp ( | |
`table` varchar(250) DEFAULT NULL, | |
`colum` varchar(250) DEFAULT NULL, | |
`type` varchar(250) DEFAULT NULL, | |
`number_of_PK` tinyint(2) DEFAULT NULL, | |
`alter` varchar(250) DEFAULT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
NewerOlder