Quick command line interface for Cheddar. Uses the vermonster gem, install with:
gem install vermonster
The config file is located at ~/.config/cheddar/config
is formated like a
regular yaml file:
client_id: xxxxxxx
language time en_us | |
colorscheme molokai | |
if has("gui_macvim") | |
set guifont=Menlo:h11 | |
endif | |
cnoremap w= w! | |
cnoremap q= q! |
src/Parser.cpp:71:16: error: reference to non-static member function must be called; did you mean to call it with no arguments? | |
if ((*it)->getType == Token::UNKNOWN) | |
~~~~~~~^~~~~~~ | |
() | |
1 error generated. | |
make: *** [src/Parser.o] Error 1 |
S := [INSTR SEP]* # | |
INSTR := | |
push(N) | |
| pop | |
| dump | |
| add | |
| sub | |
| mul | |
| div |
Quick command line interface for Cheddar. Uses the vermonster gem, install with:
gem install vermonster
The config file is located at ~/.config/cheddar/config
is formated like a
regular yaml file:
client_id: xxxxxxx
This example demonstrates loading of CSV data, which is then quantized into a diverging color scale. The values are visualized as colored cells per day. Days are arranged into columns by week, then grouped by month and years. Colors by Cynthia Brewer. Layout inspired by Rick Wicklin and Robert Allison. Dow Jones historical data copyright Yahoo! Finance or independent data provider; fair use for educational purposes.
#!/usr/bin/env python | |
# From http://stackoverflow.com/questions/3085153/how-to-parse-the-manifest-mbdb-file-in-an-ios-4-0-itunes-backup | |
import sys | |
import hashlib | |
mbdx = {} | |
def getint(data, offset, intsize): | |
"""Retrieve an integer (big-endian) and new offset from the current offset""" | |
value = 0 |
require 'gmail' | |
Gmail.connect(username, password) do |gmail| | |
gmail.deliver do | |
to "[email protected]" | |
subject "Having fun in Puerto Rico!" | |
text_part do | |
body "Text of plaintext message." | |
end | |
html_part do |
Nikefuel data for october 2012.
require 'vermonster' | |
cheddar = Vermonster::Client.new(:id => client_id, :secret => client_secret) | |
cheddar.use_token!(user_token) | |
tasks_id = [] | |
tasks = cheddar.lists.find(1619).tasks | |
tasks.each do |task| | |
tasks_id.push(task['id']) |