Skip to content

Instantly share code, notes, and snippets.

View jjulian's full-sized avatar

Jonathan Julian jjulian

  • Ad Hoc LLC
  • MD
  • 22:58 (UTC -04:00)
View GitHub Profile
@jjulian
jjulian / * Android Version & API Level List.md
Last active May 1, 2019 19:15 — forked from yicr/Android Version API Level List.md
* Android Version & API Level List on 2016/08/28

Androidのバージョン表記及びAPI Level

Version Code Name Level Build.VERSION_CODES.
1.0 1 BASE
1.1 2 BASE_1_1
1.5 Cupcake 3 CUPCAKE
1.6 Donut 4 DONUT
2.0 Eclair 5 ECLAIR
2.0.1 6 ECLAIR_0_1
@jjulian
jjulian / file0.txt
Created November 14, 2016 17:53 — forked from YumaInaura/file0.txt
iPhone系端末の InternalName と 一般名の対応表 ref: http://qiita.com/YumaInaura/items/31838a72678fa09d7e19
iPhone : iPhone1,1
iPhone 3G : iPhone1,2
iPhone 3GS : iPhone2,1
iPhone 4 : iPhone3,1
iPhone 4 : iPhone3,2
iPhone 4 : iPhone3,3
iPhone 4S : iPhone4,1
iPhone 5 : iPhone5,1
iPhone 5 : iPhone5,2
iPhone 5c : iPhone5,3
@jjulian
jjulian / Output iOS Icons.jsx
Last active August 29, 2015 14:28 — forked from tlinkner/Output iOS Icons.jsx
Photoshop script to output iOS icons, now with iOS 8 sizes
// Output iOS Icons.jsx
// 2014 Todd Linkner
// License: none (public domain)
// v1.2
//
// This script is for Photoshop CS6. It outputs iOS icons
// from a source 1024px x 1024px PSD
//
// bring Photoshop into focus
@jjulian
jjulian / graphite-install.md
Last active December 11, 2015 02:48 — forked from caged/graphite.md
Steps I used to install graphite on OS X Lion Jan 14 2013

Steps I used to install graphite (http://graphite.wikidot.com) on OS X Lion Jan 14 2013.

Your Application sends stats over UDP to... statsd (the data collection agent) which sends the stats to... Carbon (the storage application) which stores the data in... Whisper db which is immediately cached and optimized for time-series data.

The Graphite webapp reads data from the Whisper db and the cache and show us pretty graphs.

@jjulian
jjulian / stream.rb
Created September 18, 2012 12:42 — forked from davetroy/stream.rb
Capture tweets for a given lat/lon bounding box
#!/usr/bin/env ruby
$: << File.dirname(__FILE__)
require 'rubygems'
require 'eventmachine'
require 'em-http' # gem name em-http-request
require 'yajl'
require 'yajl/json_gem'
class Streamer
@jjulian
jjulian / example.erb
Created February 18, 2012 16:44
Running Ruby under Apache like PHP, using cgi - http://stackoverflow.com/a/1901772/231245
<% header "Content-Type" => "text/html" %>
<h1>Let's run some ruby code: <%= rand %></h1>
@jjulian
jjulian / WTF.js
Created February 21, 2011 11:09 — forked from scottmessinger/WTF.js
Helping Scott M with $.ajax
// We all overlooked the fact that there was no "callback" for the response
// Ajax is asynchronous
$.ajax({
url : '/plans.json',
success: function(json, status, xhr) {
console.log("request is complete");
console.log(json[0].plan.created_at);
}
});