/Applications/LimeChat.app/Contents/Themes/Limelight.css に以下のCSSを追加。
他のテーマを使っている場合は、そのテーマのcssを編集。
.line[type=join] { display:none; }
.line[type=quit] { display:none; }
.line[type=mode] { display:none; }
.line[type=part] { display:none; }2013-08-25 時点のAndroid 2.3.x(Gingerbread)のシェアは33%です。 Android 2.3.x が退場すると、JavaScriptの世界ではこのような変化が訪れます。
以下の機能が利用可能になります。
// jj
#!/usr/local/bin/node
var argv = process.argv.slice(2);
if (argv.length) {
var json = JSON.parse(require("fs").readFileSync(argv.shift(), "utf8"));
var result = {};http://www.ted.com/talks/dan_ariely_asks_are_we_in_control_of_our_own_decisions.html
「予想通りに不合理」の著者である、行動経済学者ダン・アリエリーは昔ながらの視覚的錯覚や彼独自の思いもよらぬ(時にショッキングな)研究結果を用い、人が何かを決断する際、自分で思っているほど合理的ではないことを証明します。
スピーカーは、視覚のトリック(錯覚)について例を示し、次に臓器提供の意思表示について国ごとに大きな差があることを紹介します。
ではその差はどこからくるか? 何が起きているのか?
iOS 7 に該当する WebKit Changeset(151723 - 152697) を調査しました
<canvas id="canvas"></canvas>
<script>
var ctx = canvas.getContext("2d");
ctx.fillStyle = "red";
ctx.fillRect(0, 0, 8, 8);
var webp = canvas.toDataURL("image/webp"); // Chrome only?
var png = canvas.toDataURL("image/png");
var jpg = canvas.toDataURL("image/jpeg");function _mix(base, // @arg Object/Function: source object
extend) { // @arg Object/Function: target object
// @ret Object/Function: source object
for (var key in extend) {
if (extend[key].constructor === Object) {
base[key] || (base[key] = extend);
_mix(base[key], extend[key]);
} else {
base[key] = extend[key];| Device | CPU | GPU | Display | OpenGL |
|---|---|---|---|---|
| iPod touch 4 | A4 | PowerVR SGX535 | 960 x 640 | 2.1 |
| iPod touch 5 | A5 | PowerVR SGX543MP2 | 1136 x 640 | 2.1 |
| iPad 1 | A4 | PowerVR SGX535 | 1024 x 768 | 2.1 |
| iPad 2 | A5 | PowerVR SGX543MP2 | 1024 x 768 | 2.1 |
| iPad 3 | A5X | PowerVR SGX543MP4 | 2048 x 1536 | 2.1 |
| iPad 4 | A6X | PowerVR SGX554MP4 | 2048 x 1536 | 2.1 |
Class Xxx implements XxxInterface {
}
function implements(Class, Interface, properties) {
for (var key in properties) {
Class.prototype[key] = properties[key];
}function enumPPAPIBrowserPlugins() {
return Array.apply(null, navigator.plugins).filter(function(plugin) {
return /Pepper/i.test(plugin.filename);
}).map(function(plugin) {
return plugin.description;
});
}
enumPPAPIBrowserPlugins().join(","); // "Shockwave Flash 11.8 r800"