Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1b
- Decimal:
27
0.0.0.0 a-0001.a-msedge.net | |
0.0.0.0 a-0002.a-msedge.net | |
0.0.0.0 a-0003.a-msedge.net | |
0.0.0.0 a-0004.a-msedge.net | |
0.0.0.0 a-0005.a-msedge.net | |
0.0.0.0 a-0006.a-msedge.net | |
0.0.0.0 a-0007.a-msedge.net | |
0.0.0.0 a-0008.a-msedge.net | |
0.0.0.0 a-0009.a-msedge.net | |
0.0.0.0 a-msedge.net |
/* Generated by Nelua 0.2.0-dev */ | |
/* Compile command: gcc "libmylib.c" -o "libmylib" -Wall -fwrapv -g -lm */ | |
/* Compile hash: 3ubsTFvAUFqRHss7xDS1yGaiVwdM */ | |
/* ------------------------------ DECLARATIONS ------------------------------ */ | |
// moved to here: | |
#ifndef MYLIB_H | |
#define MYLIB_H | |
#ifdef __GNUC__ | |
#pragma GCC diagnostic error "-Wimplicit-function-declaration" |
local ffi = require 'ffi' | |
local bit = require 'bit' | |
local clock_gettime | |
if ffi.os == 'Windows' then | |
local UNIX_TIME_START = 0x019DB1DED53E8000LL | |
local TICKS_PER_SECOND = 10000000LL | |
ffi.cdef [[ |
See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
all: lib run | |
lib: | |
g++ -shared -fPIC -o libhello.so libhello.cpp hello.cpp | |
run: | |
luajit main.lua | |
clean: | |
rm *.so |
#!/bin/bash | |
# default location of theme and wallpaper | |
# replace 'awtheme' with your current theme | |
wallpaperDestination="$HOME/.config/awesome/themes/awtheme/wallpaper"; | |
# add #include "/home/arch/.Xresources_colors" to .Xresources | |
colorScriptDestination="/home/arch/.Xresources_colors" | |
# add [[ -f "$HOME/.bash_colors" ]] && . "$HOME/.bash_colors"; to .bashrc | |
# bashColorsDestination="/home/arch/.bash_colors" |
# migrating from https://github.com/robbyrussell/oh-my-zsh/blob/master/plugins/git/git.plugin.zsh | |
# Aliases | |
alias g='git' | |
#compdef g=git | |
alias gst='git status' | |
#compdef _git gst=git-status | |
alias gd='git diff' | |
#compdef _git gd=git-diff | |
alias gdc='git diff --cached' |