Skip to content

Instantly share code, notes, and snippets.

@tinotriste
tinotriste / breadcrumbs-functions.php
Last active April 20, 2024 05:36
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')