Skip to content

Instantly share code, notes, and snippets.

@christopheranderton
christopheranderton / opera-mac-internal-pages-and-more.md
Last active October 12, 2024 00:43
A list of internal (and external) pages and useful information for macOS/OS X users (and others) of the Chromium/Blink based version of the web browser Opera.

Opera Development Icon

@jdriscoll
jdriscoll / related_by_tag.rb
Created January 25, 2014 18:29
Jekyll generator that builds a sorted list of related posts by how many tags they have in common. Add to <source>/_plugins.
@ryanflorence
ryanflorence / static_server.js
Last active July 21, 2024 12:43
Node.JS static file web server. Put it in your path to fire up servers in any directory, takes an optional port argument.
var http = require("http"),
url = require("url"),
path = require("path"),
fs = require("fs")
port = process.argv[2] || 8888;
http.createServer(function(request, response) {
var uri = url.parse(request.url).pathname
, filename = path.join(process.cwd(), uri);