Skip to content

Instantly share code, notes, and snippets.

View mattneary's full-sized avatar

Matt Neary mattneary

View GitHub Profile
@mattneary
mattneary / scrape.js
Last active August 29, 2015 14:20
GroupMe API scraper
var http = require('http');
var https = require('https');
var GROUP = '10237173'; // Get from another API call
var record = [];
function getMessages(token, res, offset) {
https.get("https://api.groupme.com/v3/groups/" + GROUP + '/messages?limit=100&token=' + token + (offset ? '&before_id=' + offset : ''), function (apiRes) {
var buffer = [];
apiRes.on('data', function (chunk) {
buffer.push(chunk);
});
@mattneary
mattneary / clean-lists.rb
Last active August 29, 2015 14:22
Keep data on new items
master = ['X', 'Y']
def clean(list)
CSV.filter("#{list}.csv") do |row|
not (master.include? row[1])
end
end
['A', 'B', 'C'].each {|file|
clean(file)
}
Todo
The first priority is to convey the design to come. We will do that using animations, the new color scheme, and view *frames* which are loyal to the new design.
To speed things up, we will not implement all views according to the new designs. Some views very much lend themselves to being implemented in web views derived from existing designs.
Player Swipe View
Detail View should scale up and add WebView
Sidebar - animate natively with WebView contents
Filter View - just a WebView
Back and Forth Views - Make them modal

Mimesis Recording

This file has been truncated, but you can view the full file.
Mimesis Recording
Title: mimesis
Mimesis Recording
Title: mimesis
Mimesis Recording
Title: mimesis
This file has been truncated, but you can view the full file.
This file has been truncated, but you can view the full file.