Skip to content

Instantly share code, notes, and snippets.

<html>
<head>
<meta http-equiv="refresh" content="0;URL=redirect.loop.a.html">
</head>
<body>
</body>
</html>
@vtsatskin
vtsatskin / README.md
Created March 4, 2014 00:06
Firefox Network Error Message Rate of Occurances

Firefox Network Error Message Rate of Occurances

A quick and dirty analysis of the rate of the occurances of different network errors. The data source used was from testpilot.

Results

output.english.only.json contains each error message with their rate of occurances.

Notes

@vtsatskin
vtsatskin / gist:11158053
Created April 21, 2014 22:00
Setup instructions to use jknielse/WorkReport on Mac OS X

Install MacTex

LaTeX is distributed on Mac OS X via MacTex. As of this wriiting the installer is 2.3 GB. It's pretty large so it'll take some time to download.

You can find the latest version on their website.

(Optional) Add /usr/texbin to your PATH

You can skip this section if you don't use a different system shell (i.e. you use bash).

@vtsatskin
vtsatskin / status.md
Last active August 29, 2015 14:00
Firefox UX Internship Exit Status

Firefox UX Internship Exit Status

An overview of the various projects I've worked on and their statuses.

Network Error Pages

  • Status: active
    • Needs review (visual style changes bug 982347)
    • Lots of other bugs to be done that bug 982347 blocks.
  • Meta bug
@vtsatskin
vtsatskin / gist:499c6315be556dcc4fbc
Last active August 29, 2015 14:03
HTN invite function signatures
createTeam(email_hash, token, callback)
* Only error: token is invalid
* callback(err, teamCode)
addToTeam(email_hash, team_id, token, callback)
* Only error: any one of the variables fucked up
* callback(err)
deleteFromTeam(email_hash, team_id, token, callback)
* Only error: any one of the variables fucked up
redis-server &
coffee -cw public/scripts &
sass --watch public/styles --style compressed &
coffee app.coffee
@vtsatskin
vtsatskin / failing.txt
Created October 30, 2014 22:23
Failing vs working file structures for gulp-gh-pages issue #26
.
├── gh-pages
│   ├── css
│   │   ├── mozdoc
│   │   │   ├── octicons
│   │   │   │   ├── LICENSE.txt
│   │   │   │   ├── octicons.css
│   │   │   │   ├── octicons.eot
│   │   │   │   ├── octicons.svg
│   │   │   │   ├── octicons.ttf
@vtsatskin
vtsatskin / circle.yml
Created June 21, 2015 03:25
Deploying wbkd/react-starterkit to gh-pages
general:
branches:
ignore:
- gh-pages
dependencies:
override:
- npm install
- bower install
test:
override:
@vtsatskin
vtsatskin / setup.md
Created July 14, 2015 18:56
Connecting a router to the uWaterloo network

Router Setup at uWaterloo

This guide assumes you are using a router with DD-WRT. Other routers may work if they support MAC Address cloning/spoofing.

Obtain a MAC Address of a school computer

  1. Log onto a school computer
  2. Type ipconfig /all into the command line
  • Example output:
@vtsatskin
vtsatskin / gist:2f2aa13d236ebe2d17a5
Last active August 29, 2015 14:25
Reading Analog pins on Arduino and streaming over serial USB
void setup(void) {
Serial.begin(9600);
Serial.println("Setup happened: serial initiated");
}
void loop() {
int pin0 = analogRead(A0);
Serial.println(pin0);
delay(125);
}