Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>~/bugs/all.html</title>
<meta name="Generator" content="Vim/7.3">
<meta name="plugin-version" content="vim7.3_v10">
<meta name="syntax" content="bz">
<meta name="settings" content="no_pre,use_css,expand_tabs">
<style type="text/css">
@paulrouget
paulrouget / index.html
Created March 15, 2012 16:08
firefox 14/15
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>~/bugs/all.html</title>
<meta name="Generator" content="Vim/7.3">
<meta name="plugin-version" content="vim7.3_v10">
<meta name="syntax" content="bz">
<meta name="settings" content="no_pre,use_css,expand_tabs">
<style type="text/css">
@paulrouget
paulrouget / scratchpad.js
Created March 21, 2012 09:38
Firefox Magnifier
/*
TODO:
- zoom level menu
- need to find a way to re-start the update
- add color tools
- integrate better in Firefox
- crosshair has a 1px offset
*/
# HG changeset patch
# User Paul Rouget <[email protected]>
# Date 1333132072 -7200
# Node ID df0e18cb0e15fd47e0eec2a39981f34a40eb799e
# Parent 4b87cffba4d5dea5ddea2e6de571cc39ce9ed31b
imported patch bug722079
diff --git a/browser/devtools/highlighter/inspector.jsm b/browser/devtools/highlighter/inspector.jsm
--- a/browser/devtools/highlighter/inspector.jsm
+++ b/browser/devtools/highlighter/inspector.jsm
<!DOCTYPE html>
<meta charset=utf-8 />
<title>test</title>
<script>
</script>
<style>
* {
@paulrouget
paulrouget / quotes
Created May 28, 2012 13:18
What robcee says
<robcee> where's my hat?,
-------
<robcee> u r teh smartest,
-------
<robcee> I WILL TAKE THIS BULLET FOR YOU,
-------
* robcee swears violently
* robcee continues swearing,
-------
<robcee> hey everybody, forget email. Let's all go skiing. (toboggans also acceptable),
@paulrouget
paulrouget / index.html
Created June 7, 2012 15:46
triage Jun 7th
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>~/bugs/bugs2.html</title>
<meta name="Generator" content="Vim/7.3">
<meta name="plugin-version" content="vim7.3_v10">
<meta name="syntax" content="bz">
<meta name="settings" content="no_pre,use_css,expand_tabs">
<style type="text/css">
@paulrouget
paulrouget / homescreen.css
Created June 11, 2012 18:46
Gaia Homescreen style
@font-face {
font-family: 'Open Sans';
src: url('fonts/Open-Sans.woff');
}
@font-face {
font-family: 'Open Sans';
font-weight: bold;
src: url('fonts/Open-Sans-Bold.woff');
}
@paulrouget
paulrouget / es6.js
Last active October 6, 2015 07:07
Some ECMAScript 6 element are available in Firefox
// To test this code in Firefox, I encourage you to use Firefox Aurora
// and to include your script this way:
// <script type="application/javascript;version=1.8">
// (necessary to make `let` work)
/* let ********************************************* */
// let is the new var :)
// Declares a block scope local variable
const { Cu } = require('chrome');
Cu.import("resource:///modules/devtools/gcli.jsm");
gcli.addCommand({
name: "echo3",
description: "echo3 yo!",
params: [
{
name: "message",