Skip to content

Instantly share code, notes, and snippets.

@curiouslychase
curiouslychase / mjs101.week1.txt
Created January 8, 2015 03:13
MongoJS 101 Week 1 Todoist Template
https://university.mongodb.com/courses/10gen/M101JS/2015_January/courseware/Week_1_Introduction/5245b269e2d42346975228c9/ (Week 1: Welcome to M101JS)
https://university.mongodb.com/courses/10gen/M101JS/2015_January/courseware/Week_1_Introduction/5245b269e2d42346975228c9/ (Week 1: Welcome to M101JS) @quiz
https://university.mongodb.com/courses/10gen/M101JS/2015_January/courseware/Week_1_Introduction/524af6b2e2d4235f73b619ee/ (Week 1: What is MongoDB?)
https://university.mongodb.com/courses/10gen/M101JS/2015_January/courseware/Week_1_Introduction/524af6b2e2d4235f73b619ee/ (Week 1: What is MongoDB?) @quiz
https://university.mongodb.com/courses/10gen/M101JS/2015_January/courseware/Week_1_Introduction/52530600e2d4237f053e42ad/ (Week 1: MongoDB Relative to Relational)
https://university.mongodb.com/courses/10gen/M101JS/2015_January/courseware/Week_1_Introduction/52530600e2d4237f053e42ad/ (Week 1: MongoDB Relative to Relational) @quiz
https://university.mongodb.com/courses/10gen/M101JS/2015_January/courseware/
@curiouslychase
curiouslychase / coursera-to-todoist.js
Created December 13, 2014 19:40
Convert Coursera Lecture List to Todoist
var lectures = Array.prototype.slice.call(document.querySelectorAll('.lecture-link'));
var todoistCollection = [];
lectures.forEach(function(lecture) {
var todoistEntry = lecture.href + ' (' + lecture.innerHTML.replace('\n', '') + ')';
todoistCollection.push(todoistEntry);
});
todoistCollection.join("\n");
@curiouslychase
curiouslychase / ga-grab.js
Created October 19, 2014 23:56
Quick snippet for getting google analytics urls from Behavior : Site Content : All Pages
Array.prototype.forEach.call(document.querySelectorAll("._GARL"),
function(i) {
console.log(i.innerHTML);
});
/**
* Usage:
* var q = new QueryParser();
*/
var QueryParser = function(option) {
var config = option || {};
var queriesMap = {};
var queryString = config.queryString !== undefined ? config.queryString : location.search;
return {
/**
@curiouslychase
curiouslychase / FlatLand.itermcolors
Created September 4, 2014 04:16
Flatland color scheme for iTerm2
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Blue Component</key>
<real>0.098313517868518829</real>
<key>Green Component</key>
<real>0.11400297284126282</real>
@curiouslychase
curiouslychase / changelog.sublime-snippet
Created August 15, 2014 14:21
A CHANGELOG snippet for all the content you'd type every time. Tabbing takes you to the next placeholder.
<snippet>
<content><![CDATA[
## ${1:Release Version}
### Added
${2:Added}
### Deprecated
${3:Deprecated}
# Make that Command Prompt look good
export GIT_PS1_SHOWDIRTYSTATE=true
export GIT_PS1_SHOWSTASHSTATE=true
export GIT_PS1_SHOWUNTRACKEDFILES=true
usrcolor='\e[0;31m'
dircolor='\e[m:\e[1;34m'
gitcolor='\e[1;32m'
closer='\e[m'
gitstatus='$(__git_ps1 " %s")'
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Blue Component</key>
<real>0.098313517868518829</real>
<key>Green Component</key>
<real>0.11400297284126282</real>
@curiouslychase
curiouslychase / codeschool-challenge.md
Last active August 29, 2015 13:57
What would your code to complete the following challenge look like?

Write some code that prints the following to the browser console, using just ONE string and the existing variables to produce the correct format:

"Old Faithful" at Yellowstone National Park\n Average eruption height today: 145\n Number of eruptions: 4\n

{
"color_scheme": "Packages/github-sublime-theme/GitHub.tmTheme",
"extensions":
[
"md",
"mdwn",
"mmd",
"txt",
"markdown"
],