Regular Colors
Value | Color |
---|---|
\e[0;30m | Black |
\e[0;31m | Red |
\e[0;32m | Green |
\e[0;33m | Yellow |
\e[0;34m | Blue |
\e[0;35m | Purple |
Value | Color |
---|---|
\e[0;30m | Black |
\e[0;31m | Red |
\e[0;32m | Green |
\e[0;33m | Yellow |
\e[0;34m | Blue |
\e[0;35m | Purple |
// I provide a logging API that has some special sauce for formatting. | |
const echo = (function() { | |
let queue = []; | |
var ECHO_TOKEN = {}; | |
const RESET_INPUT = "%c "; | |
var RESET_CSS = ""; | |
// Attach formatting utility method. | |
function alertFormatting (value) { | |
queue.push({ |
/// Rounded corners on images | |
/// @author Newton Koumantzelis | |
/// @since 1.0.0 - The Sith | |
/// @example html | |
/// <img src="" class="img-broken" alt="Generic image"> | |
.img-broken { | |
position: relative; | |
min-height: 3rem; | |
&::before, |
const fs = require('fs'); | |
const readline = require('readline'); | |
const readFile = () => { | |
// create readline interface and output to a new file; can't figure out how to write to same file | |
const readInterface = readline.createInterface({ | |
input: fs.createReadStream(findup('sonar-project.properties')), | |
output: fs.createWriteStream('sonar-project.properties.temp'), | |
console: false | |
}); |
brave-browser | |
brave-browser-beta | |
brave-browser-dev | |
chromium | |
chromedriver | |
dash | |
docker | |
dropbox | |
firefox | |
firefox-developer-edition |
I hereby claim:
To claim this, I am signing this object:
betterzip | |
qlimagesize | |
qlstephen | |
qlvideo | |
quicken | |
quicklook-csv | |
slack | |
suspicious-package | |
webpquicklook |
font-anonymous-pro | |
font-arvo | |
font-bitter | |
font-input | |
font-inconsolata | |
font-league-gothic | |
font-orbitron | |
font-redacted | |
font-source-code-pro | |
font-source-sans-pro |
handbrake | |
prismatik | |
screens-connect | |
sonos |
$(function() { | |
// good opportunity to combine into a single statement | |
// qq w cw <esc> A, <esc> 0 j q | |
var a = 10; | |
var b = 20; | |
var c = 30; | |
var d = 40; | |
var e = 50; | |
// opportunity to simplify syntax |