いまどきのガラケーコーディングがどうなっているか確認してみました。
- 停波による古い端末の一掃
- docomo
- 2006春モデル以前の端末が mova の停波により 2012/03/31 から利用不能に
- docomo
- au
| // see https://github.com/uupaa/Hash.js | |
| #include <stddef.h> /* size_t */ | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <stdint.h> | |
| #include <stdio.h> | |
| uint32_t murmur3_32(const char *key, uint32_t len, uint32_t seed) { | |
| static const uint32_t c1 = 0xcc9e2d51; |
http://creation.mb.softbank.jp/mc/terminal/terminal_info/terminal_flash.html
function _scraping(rootNode) {
var trNodes = rootNode.querySelectorAll("tr");
var lines = [].slice.call(trNodes).map(function(tr) {
try {
return _format(' "{{id}}": [{{brand}}, {{flver}}, {{size}}, {{browser}} ],', {
id: tr.children[0].textContent,
brand: "SOFTBANK",http://www.au.kddi.com/ezfactory/tec/spec/new_win/ezkishu.html
function scraping(rootNode) {
var trNodes = rootNode.querySelectorAll("tr");
var lines = [].slice.call(trNodes).map(function(tr) {
try {
return [
' "',
tr.children[1].children[0].textContent, // DEVICE ID| #!/usr/bin/env node | |
| (function(global) { | |
| var _USAGE = _multiline(function() {/* | |
| Usage: | |
| misc [--help] | |
| [--verbose] | |
| [--travis] | |
| [--jshint] |
Webkit does not support Blob in IndexedDB.
http://trac.webkit.org/changeset/163923 - IDB: Reimport storage/indexeddb tests from Blink
以下の snippet を Chrome の DevTools で使うと、ページ内に仕掛けられた全てのEventListenersの設定元の一覧をダンプし、コードの位置を辿ることや、<scoped> な Closure Object(スコープ内の変数等) を参照することができます。
(ა✘﹏✘)ა イベントリスナーが沢山あってもう何がなんだかわからないんですー
な、状況や、パフォーマンス・チューニングで泣きつかれた時に、
(ε・◇・)з o O ( なるほど… お困りのご様子…
(ε・◇・)з o O ( では、ちょっとキーボードをお借りしますね…
と、華麗に console にタイプするのが、以下のコードになります。