View calm.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function () { const page = document.getElementsByTagName('html'); page[0].style.filter = 'saturate(50%)'})(); |
View blob.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Blob { | |
constructor(data) { | |
this.data = data | |
} | |
type() { | |
return 'blob' | |
} | |
toString() { |
View vrs.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs') | |
const path = require('path') | |
const directories = ['objects', 'refs'] | |
const command = process.argv[2] | |
switch (command) { | |
case 'init': | |
const repoPath = process.argv[3] || '' | |
const gitPath = path.resolve(repoPath, '.git') |
View git-object-filenames.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Calculating and printing the SHA-1 hash of strings | |
const crypto = require('crypto') | |
const zlib = require('zlib') | |
function hashIt(string) { | |
return crypto | |
.createHash('sha1') | |
.update(string, 'utf-8') | |
.digest('hex') |
View why-ayo.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
As a core member of the team: I believe that node is lacking in what it does to support its community, its governance model | |
is currently a mess and I don't feel that it is easy for the majority of people to contribute. This did not start and does | |
not end with whatever has been occurring in node over these past two weeks. These have been my feelings for over two years | |
now. I have experienced this first hand as a former part of node, as I sat within the now defunct Inclusivity Working Group. | |
It's time to try something new. | |
<3 |
View actions.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import axios from 'axios' | |
import getHost from '../../lib/getHost' | |
export const REQUEST_CATEGORY = 'REQUEST_CATEGORY' | |
function requestCategory (categoryId) { | |
return { | |
type: REQUEST_CATEGORY, | |
categoryId | |
} | |
} |
View james_salsa.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tin of peeled plum tomatoes (incl. the juice!) | |
Fist of fresh coriander (cilantro for my US buds) | |
Half a brown onion | |
Half a garlic bulb | |
Half to 2/3 of a Jalapeño | |
2 Tablespoons of Olive Oil (don't get fancy with it) | |
Two shakes of black pepper (any shit will do) | |
Pinch of salt (any shit will do) | |
Chop the shit out of everything choppable |
View package-lock.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "mobiles-mirage", | |
"lockfileVersion": 1, | |
"dependencies": { | |
"accepts": { | |
"version": "1.3.3", | |
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz", | |
"integrity": "sha1-w8p0NJOGSMPg2cHjKN1otiLChMo=" | |
}, | |
"airbrake": { |
View package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "xxx", | |
"description": "xxx", | |
"bugs": { | |
"url": "xxx" | |
}, | |
"author": "uSwitch Limited", | |
"contributors": [ | |
"Charlotte Spencer <charlotte.spencer@uswitch.com>" | |
], |
View 2017-06-05T09_28_59_031Z-debug.log
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0 info it worked if it ends with ok | |
1 verbose cli [ '/Users/charlotte.spencer/.nvm/versions/node/v8.0.0/bin/node', | |
1 verbose cli '/Users/charlotte.spencer/.nvm/versions/node/v8.0.0/bin/npm', | |
1 verbose cli 'install' ] | |
2 info using npm@5.0.2 | |
3 info using node@v8.0.0 | |
4 silly install runPreinstallTopLevelLifecycles | |
5 silly preinstall mobiles-mirage@ | |
6 info lifecycle mobiles-mirage@~preinstall: mobiles-mirage@ | |
7 silly lifecycle mobiles-mirage@~preinstall: no script for preinstall, continuing |
NewerOlder