Important: the target repo must first be created.
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
/* Table of contents | |
–––––––––––––––––––––––––––––––––––––––––––––––––– | |
- Plotly.js | |
- Grid | |
- Base Styles | |
- Typography | |
- Links | |
- Buttons | |
- Forms | |
- Lists |
Global configuration is in /etc/ansible
By default, Ansible will try to use native OpenSSH for remote communication when possible. This enables ControlPersist[controlPersistNote], Kerberos, and options in ~/.ssh/config such as Jump Host setup.
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
#/bin/bash | |
#-- Script to automate https://help.github.com/articles/why-is-git-always-asking-for-my-password | |
REPO_URL=`git remote -v | grep -m1 '^origin' | sed -Ene's#.*(https://[^[:space:]]*).*#\1#p'` | |
if [ -z "$REPO_URL" ]; then | |
echo "-- ERROR: Could not identify Repo url." | |
echo " It is possible this repo is already using SSH instead of HTTPS." | |
exit | |
fi |
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
TODO | |
implement security measures | |
git config | |
config files | |
full sublimetext config | |
set up openvpn | |
rdesktop and network drive to terra | |
set up evolution | |
RStudio |
/etc/profile
is the system-wide .profile
file for the Bourne shell and Bourne compatible shells
- On ubuntu, the
PATH
environment variable is being set in this file, then/etc/bash.bashrc
and every readable files in/etc/profile.d
will be loaded. - On mac OS,
/usr/libexec/path_helper
is beeing exectued for setting the$PATH
environment variable, then/etc/bashrc
and later on terminal specific configuration/etc/bashrc_${TERM_PROGRAM}
will be loaded
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
/* Save in firefox profile as chrome/userChrome.css */ | |
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ | |
#personal-bookmarks .bookmark-item[container] .toolbarbutton-icon { | |
display:none!important; | |
} | |
#personal-bookmarks .bookmark-item:not([container]) .toolbarbutton-text { | |
display:none!important; | |
} |
fish is a smart and user-friendly command line shell for Linux, macOS, and the rest of the family.
- Autosuggestions
- Web Based configuration
- ...
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
#!/bin/bash | |
# If no DVB adapter present, break | |
dmesg | grep -i DVB > /dev/null | |
if (($? != 0)); then exit 1;fi | |
# Install Firmware | |
sudo wget -q https://github.com/OpenELEC/dvb-firmware/blob/master/firmware/dvb-demod-m88ds3103.fw?raw=true -O /lib/firmware/dvb-demod-m88ds3103.fw | |
#--------------------------------------------------------- |