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
### This script retrieves the RTU course names corresponding to the RTU course codes | |
### Works as of 13.03.16. | |
### Coded by Linards Jukmanis - 0x4C4A.com | |
# Needs python, urllib2, cookielib and regular expressions | |
import urllib2 | |
import cookielib | |
import re | |
# Input your course codes |
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
#!/bin/sh | |
sudo add-apt-repository ppa:thopiekar/mt7601 | |
sudo apt-get update | |
sudo apt-get install build-essential # Without build-essential failed to compile on fresh Linux Mint installation | |
sudo apt-get install mt7601-sta-dkms | |
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
#!/bin/sh | |
# My favourite flavour of git lg | |
git config --global alias.lga "log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) -%C(bold yellow)%d%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset) %C(bold green)(%ar)%C(reset)' --all --date-order" | |
git config --global alias.lg "log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) -%C(bold yellow)%d%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset) %C(bold green)(%ar)%C(reset)' --date-order" | |
# Rebase by default for all new branches | |
git config branch.autosetuprebase always | |
# Remember login details | |
git config --global credential.helper "store" |
NewerOlder