View init-basic.sh
sudo dnf update -y | |
sudo rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux | |
sudo bash -c 'cat << EOF > /etc/yum.repos.d/google-chrome.repo | |
[google-chrome] | |
name=google-chrome - \$basearch | |
baseurl=http://dl.google.com/linux/chrome/rpm/stable/\$basearch | |
enabled=1 | |
gpgcheck=1 | |
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub |
View fetch_cert_expiration.sh
echo q | openssl s_client -connect <hostname>:443 2>&1 | openssl x509 -noout -dates |
View gist:39834c3f146ed7a7701de838e7e98713
{ | |
"sublimeTextKeymap.promptV3Features": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.formatOnPaste": true, | |
"workbench.colorTheme": "Visual Studio Dark", | |
"workbench.panel.location": "bottom", | |
"editor.wordWrap": "on", | |
"files.exclude": { | |
"**/.git": true, |
View install_postman.sh
#!/bin/bash | |
cd /tmp || exit | |
echo "Downloading Postman ..." | |
wget https://dl.pstmn.io/download/latest/linux?arch=64 -O postman.tar.gz | |
tar -xzf postman.tar.gz | |
rm postman.tar.gz | |
echo "Installing to opt..." | |
if [ -d "/opt/Postman" ];then | |
sudo rm -rf /opt/Postman |
View Contributing to Open Source
Why should I contribute? | |
Students gain: | |
- skills | |
- real world experience | |
- understanding of programming disciplines and best practices | |
- contacts | |
- exposure | |
organizations gain: | |
- new contributions & contributors |
View links.txt
https://github.com/tmuxinator/tmuxinator | |
https://cookieshq.co.uk/posts/3-tips-for-a-better-tmuxinator-usage-in-your-team/ | |
http://aokolish.me/blog/2013/02/12/using-tmux-and-tmuxinator/ | |
http://aokolish.me/blog/2015/02/16/how-to-start-your-app-in-tmux-with-one-command/ | |
https://github.com/judikdavid/tmux-node/blob/master/.tmuxinator/project.yml | |
http://stackoverflow.com/questions/17445100/getting-back-old-copy-paste-behaviour-in-tmux-with-mouse |
View .tmux.conf
# 0 is too far from ` ;) | |
# set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
#set -g default-terminal screen-256color | |
set -g status-keys vi | |
set -g history-limit 10000 |
View .editorconfig
[*.js] | |
indent_style = space | |
indent_size = 2 | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
[{package.json,*.yml}] | |
indent_style = space | |
indent_size = 2 |
View Preferences.sublime-settings
// Settings in here override those in "Default/Preferences.sublime-settings", | |
// and are overridden in turn by file type specific settings. | |
{ | |
"Seti_ClosedFolder_remove": true, | |
"Seti_show_group_arrows": true, | |
"always_show_minimap_viewport": true, | |
"auto_complete_selector": "source - comment, meta.tag - punctuation.definition.tag.begin", | |
"auto_complete_triggers": | |
[ | |
{ |
View subl2.sh
SCRIPT="#!/bin/sh | |
if [ \${1} == \"--help\" ]; then | |
/usr/local/sublime-text-2/sublime_text --help | |
else | |
/usr/local/sublime-text-2/sublime_text \$@ > /dev/null 2>&1 & | |
fi" | |
echo "${SCRIPT}" > "/usr/local/bin/subl2" | |
chmod +x "/usr/local/bin/subl2" | |
ln -s /usr/local/sublime-text-2/sublime_text /usr/bin/sublime-text2 |
NewerOlder