This file contains hidden or 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
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); | |
}); |
This file contains hidden or 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
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) | |
} |
This file contains hidden or 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
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 |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
Mimesis Recording | |
Title: mimesis |
This file contains hidden or 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
Mimesis Recording | |
Title: mimesis |
This file contains hidden or 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
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.