Maxim Stewart

513 points
User profile image.
Earth

Maxim Stewart has been using FOSS for roughly 6+ years now and has loved every minute of it. FOSS has given him the freedom to explore and question how things work and as such, it has given him skills in the fields of troubleshooting, programming, and IT to improve the world one byte at a time. He has striven to share his knowledge through platforms such as Youtube, Opensource.com, and elsewhere. Furthermore, he is the maintainer of a fledgling OS called Sol-OS (NOT Solus) which aims to be lightweight and feature packed. It has also served as a means to improve his programming skills in Java, C++, Javascript, Bash, and other languages.

Authored Comments

Oh boy, these are really helpful! I just might convert to Vim now....

I like having 4 Stjerm terminals since Stjerm is like Guake terminal.

exec stjerm -k f8 -o 50 -fg 00e8ff -ah 0 -p left -h 800 -w 700 -st always &
exec stjerm -k f9 -o 50 -fg 00e8ff -ah 0 -p right -h 800 -w 700 -st always &
exec stjerm -k f12 -o 50 -fg 00e8ff -ah 0 -p top -h 500 -w 700 -st always &
exec stjerm -k f10 -o 50 -fg 00e8ff -ah 0 -p bottom -h 500 -w 700 -st always &

Then there is my quick php server command setup in my bashrc file:

phpServer () {
php -S 0.0.0.0:"$1"
}

# frameebuffer MPLAYER
alias mplayerfb="mplayer -vo fbdev2 -zoom -x 800 -y 600"

clear like Windows
alias cls='clear'

# Aliases for Git
alias gitA="git add -A ."
alias gitC="git commit -m"
alias gitP="git push"