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 |
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 |
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 |
// 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 |
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.
#!/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 |
<% header "Content-Type" => "text/html" %> | |
<h1>Let's run some ruby code: <%= rand %></h1> |
// 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); | |
} | |
}); |