Skip to content

Instantly share code, notes, and snippets.

View yanek's full-sized avatar

Noé Ksiazek yanek

View GitHub Profile
@yanek
yanek / Add prefix to FULL - Name.pas
Created May 8, 2017 10:13
FO4Edit script to prepend any string to the FULL - Name field of every selected records (useful for sorting mods patching)
{
This script will prepend supplied value to the Full Name field
of every selected record.
}
unit UserScript;
var
s: string;
function Initialize: integer;
@yanek
yanek / colors.sh
Last active August 29, 2015 13:57
Bash colors
# Just put bash colors' codes into variables for more suitable use.
declare -A color=(
['black']='\e[0;30m' # Black - Regular
['red']='\e[0;31m' # Red
['green']='\e[0;32m' # Green
['yellow']='\e[0;33m' # Yellow
['blue']='\e[0;34m' # Blue
['purple']='\e[0;35m' # Purple
['cyan']='\e[0;36m' # Cyan