Skip to content

Instantly share code, notes, and snippets.

@brenopolanski
brenopolanski / install-firefox-nightly.md
Created July 30, 2014 00:34
Install Firefox Nightly in Ubuntu via PPA

via: http://www.webupd8.org/2011/05/install-firefox-nightly-from-ubuntu-ppa.html

Add the Mozilla Daily PPA (available for Ubuntu 11.04, 10.10 and 10.04) and install Firefox Nightly using the commands below:

$ [sudo] add-apt-repository ppa:ubuntu-mozilla-daily/ppa
$ [sudo] apt-get update
$ [sudo] apt-get install firefox-trunk

Since this is a daily builds PPA, it's nowhere near stable so use it at your own risk!

@rlogiacco
rlogiacco / Plotter.pde
Created November 28, 2013 23:06
Processing scale aware plotter for Arduino usable as coarse oscilloscope. Two Arduino code examples provided.
// Time Aware Plotter
// License: Creative Commons BY-SA
// This program takes ASCII-encoded strings from the serial port at 9600 baud and graphs them.
// It expects up to 6 comma separated values in the range 0 to 1023 followed by a newline.
// Plotting must be started with a mouse click and can be paused with a mouse click as well.
// Please note: while plotting is stopped serial data is discarded!
import processing.serial.*;
@noggs
noggs / echo_test.js
Created May 16, 2012 08:38
node.js echo test
"use strict";
var http = require('http');
var fs = require('fs');
var WebSocketServer = require('websocket').server;
var clients = [];
var next_client = 0;
var mainHtml = (function () {
var f;
@aemkei
aemkei / LICENSE.txt
Last active April 12, 2024 21:27 — forked from 140bytes/LICENSE.txt
Binary Tetris - 140byt.es
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@140bytes
140bytes / LICENSE.txt
Created May 9, 2011 16:13
140byt.es -- Click ↑↑ fork ↑↑ to play!
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
anonymous
anonymous / sudoku.hs
Created April 29, 2011 13:59
Sudoku in Haksell by JJ
-- Solve Every Sudoku Puzzle
-- See http://norvig.com/sudoku.html
-- Throughout this program we have:
-- r is a row, e.g. 'A'
-- c is a column, e.g. '3'
-- s is a square, e.g. 'A3'
-- d is a digit, e.g. '9'
-- u is a unit, e.g. ['A1','B1','C1','D1','E1','F1','G1','H1','I1']