Skip to content

Instantly share code, notes, and snippets.

@JBlond
JBlond / bash-colors.md
Last active December 6, 2025 01:57 — forked from iamnewton/bash-colors.md
The entire table of ANSI color codes.

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
@tinotriste
tinotriste / breadcrumbs-functions.php
Last active July 20, 2025 00:04
Wordpress: Breadcrumbs function
<?php
/*=============================================
= BREADCRUMBS =
=============================================*/
// to include in functions.php
function the_breadcrumb() {
$sep = ' > ';
@coolaj86
coolaj86 / injs.js
Last active January 8, 2017 17:23
REPL tools for NodeJS
#!/usr/bin/env node
/*jshint strict:true node:true es5:true
onevar:true laxcomma:true laxbreak:true eqeqeq:true immed:true latedef:true*/
(function () {
"use strict";
var repl = require("repl")
, context = repl.start("injs> ").context
, path = require('path')
, fs = require('fs')