start new:
tmux
start new with session name:
tmux new -s myname
| \documentclass[class=article,border=0pt]{standalone} | |
| %------------------------------------------------------------------------------ | |
| % COLORS | |
| %------------------------------------------------------------------------------ | |
| \usepackage{xcolor} | |
| %------------------------------------------------------------------------------ | |
| % TIKZ | |
| %------------------------------------------------------------------------------ |
| for i in {0..255} ; do | |
| printf "\x1b[38;5;${i}mcolour${i}\n" | |
| done |
I hereby claim:
To claim this, I am signing this object:
| \usepackage{fancyvrb} | |
| \usepackage{listings} | |
| \renewcommand{\lstlistingname}{\textsc{Program}} | |
| \definecolor{keywordscolor1}{RGB}{72, 91, 98} | |
| \definecolor{keywordscolor2}{RGB}{133, 153, 3} | |
| \definecolor{keywordscolor3}{RGB}{181, 137, 3} | |
| \definecolor{identifiercolor}{RGB}{37, 116, 206} | |
| \definecolor{commentscolor}{RGB}{130, 144, 144} | |
| \definecolor{attributescolor}{RGB}{203, 75, 22} |
| xrandr --output $(xrandr -q | awk '/ connected / {print $1}') --brightness 0.8 |
| #!/bin/bash | |
| # store the current dir | |
| CUR_DIR=$(pwd) | |
| # Let the person running the script know what's going on. | |
| printf "\nPulling in latest changes for all repositories...\n" | |
| # Find all git repositories and update it to the master latest revision | |
| for i in $(find . -name ".git" -type d); do |
| <template> | |
| <input type="number" ref="monthPicker" :value="value" @input="updateDate()" /> | |
| </template> | |
| <script> | |
| export default { | |
| props: ['value'], | |
| methods: { | |
| updateDate () { |