Skip to content

Instantly share code, notes, and snippets.

View mariabitsch's full-sized avatar

Maria Bitsch mariabitsch

  • Copenhagen, Denmark
  • 06:15 (UTC +02:00)
View GitHub Profile
@Preetam
Preetam / Infimum.tmTheme
Created May 19, 2014 02:55
A minimal Sublime color scheme based on shades of gray
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>gutterSettings</key>
<dict>
<key>background</key>
<string>#FFFFFF</string>
<key>divider</key>
<string>#000000</string>
@dypsilon
dypsilon / frontendDevlopmentBookmarks.md
Last active June 30, 2026 18:13
A badass list of frontend development resources I collected over time.
@Carreau
Carreau / kernel.js
Created December 13, 2012 20:09
A node.js kernel for IPython notebook. You can see the explanation of the ipynb rendered in http://nbviewer.ipython.org
zmq = require("zmq")
fs = require("fs")
var config = JSON.parse(fs.readFileSync(process.argv[2]))
var connexion = "tcp://"+config.ip+":"
var shell_conn = connexion+config.shell_port
var pub_conn = connexion+config.iopub_port
var hb_conn = connexion+config.hb_port