I hereby claim:
- I am blvkoblsk on github.
- I am blvkoblsk (https://keybase.io/blvkoblsk) on keybase.
- I have a public key ASDxBCblbfRmtVaQQQ27kZ3dIi3metRyRzi6b593a2EYbQo
To claim this, I am signing this object:
/** | |
* Requires node v0.7.7 or greater. | |
* | |
* To connect: $ curl -sSNT. localhost:8000 | |
*/ | |
var http = require('http') | |
, repl = require('repl') | |
, buf0 = new Buffer([0]) |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
clear | |
echo | |
echo -e " ---------------------------- " | |
echo | |
echo -e " \033[0;97;2:31;5mWHITE FG TEXT BLINKING\033[0m"; | |
echo | |
echo -e " \033[39;31;2:39;5mRED FG TEXT BLINKING\033[0m"; | |
echo |
#!/usr/bin/env python | |
# -*- encoding: utf-8 -*- | |
""" An efficient and simple ANSI colours module (and also a powerfull script), with functions to print text using colours. | |
About the convention for the names of the colours : | |
* for the eight colours black, red, green, yellow, blue, magenta, cyan, white: | |
* the name in minuscule is for colour **with bold** (example 'yellow'), | |
* the name starting with 'B' is for colour **without bold** (example 'Byellow'), | |
* the name starting with a capital letter is for the background colour (example 'Yellow').* for the special effects (blink, italic, bold, underline, negative), **not always supported** : |
#!/bin/bash | |
# TPUT COLORS - BASH SHELL SCRIPT | |
echo | |
echo -e "$(tput bold) reg bld und tput-command-colors$(tput sgr0)"; | |
for i in $(seq 1 8); do | |
echo " $(tput setaf $i)Text$(tput sgr0) $(tput bold)$(tput setaf $i)Text$(tput sgr0) $(tput sgr 0 1)$(tput setaf $i)Text$(tput sgr0) \$(tput setaf $i)" | |
done | |
echo ' Bold $(tput bold)' |
#!/bin/bash | |
# BASH COLORS - ANSI ESCAPE | |
# NORMAL | |
txtblk='\e[0;30m' # Black | |
txtred='\e[0;31m' # Red | |
txtgrn='\e[0;32m' # Green | |
txtylw='\e[0;33m' # Yellow | |
txtblu='\e[0;34m' # Blue |
#!/bin/bash | |
#### BASH PROMPT - HOST :: DATE :: TIME :: CWD :: $ | |
PS1="\[\e[34m\]\h\[\e[m\] :: \[\e[32m\]\d\[\e[m\] :: \[\e[32m\]\A\[\e[m\] :: \[\e[36;40m\]\w\[\e[m\] :: \[\e[31m\]\\$\[\e[m\] " |
#!/bin/bash | |
#### BASH_PROMPT W/ GIT STATUS & ANSI COLOR | |
#### Created for VPS instance - 08.17.2017 | |
# get current branch in git repo | |
function parse_git_branch() { | |
BRANCH=`git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'` | |
if [ ! "${BRANCH}" == "" ] | |
then |
background: linear-gradient(320deg, #000000, #000000, #5785b8, #374a5f, #0e2b4d, #5785b8, #000000); | |
background-size: 1400% 1400%; | |
-webkit-animation: blvkGradientBG 45s ease infinite; | |
-moz-animation: blvkGradientBG 45s ease infinite; | |
-o-animation: blvkGradientBG 45s ease infinite; | |
animation: blvkGradientBG 45s ease infinite; | |
@-webkit-keyframes blvkGradientBG { | |
0%{background-position:11% 0%} | |
50%{background-position:90% 100%} | |
100%{background-position:11% 0%} |
Byobu Commands | |
============== | |
byobu Screen manager | |
Level 0 Commands (Quick Start) | |
------------------------------ | |
<F2> Create a new window |