Skip to content

Instantly share code, notes, and snippets.

@hell0again
hell0again / gist:ff20f437f28e4862db4a
Created December 5, 2014 11:53
自作yeomanテンプレートの使い方(cli-appの例)
$ cd git
$ mkdir mycommand; cd mycommand
$ npm init
$ npm install hell0again/generator-cli-app # <github username>/<github project>
$ yo # or yo cli-app
## yeamonに言われるがままにコマンド名を指定
## package.jsonは上書き。
## cli-appなら↓でコマンドを実行可能に。
$ npm install -g コマンド名
@hell0again
hell0again / gist:e6c8606328f5925aa980
Created September 17, 2014 02:48
backboneでcomputedな属性を実現するためのpluginども

setterがあったりなかったりgetterへのdependsの渡し方ら辺で差が出てる。 人気なのはepoxyっぽいけどobjectではなくjsonで設定を渡すのがキモい。

使うかもしれない

おなまえ リポジトリ 小並感
backbone-computedfields https://github.com/alexanderbeletsky/backbone-computedfields Inspired by backbone.compute。get, set, dependsとかで定義。いま使ってる
@hell0again
hell0again / gist:a71c3152ba77c2b7e403
Created August 22, 2014 09:33
promise.catchでコールスタック
var promise = new Promise(function(resolve, reject) {
// ..
});
promise.then(function() {
// ..
}).catch(function(err, data) { // then内でErrorを吐く場合、catch必須。つまりcatch必須。
if (err) { // スタックトレース表示
console.log(err);
if (err.stack) {
console.log(err.stack.split('¥n').slice(2).join('¥n'));
@hell0again
hell0again / 01.coffee
Last active August 29, 2015 14:05
Promise.deferを書いてたときにcoffeeの変数宣言で泣いた
# Promise.deferが欲しかったので適当に書いてみる
# @deferの先頭でresolve, rejectの変数宣言をしたかった
# we want Promise.defer!!
`if (typeof define !== 'function') { var define = require('amdefine')(module) } // for node`
define [
'es6-promise'
], (es6Promise) ->
'use strict'
class Promise extends es6Promise.Promise
@hell0again
hell0again / gist:f9be720ef3cbf13c5520
Created August 21, 2014 04:45
はじめにdefineがあった。
`if (typeof define !== 'function') { var define = require('amdefine')(module) } // for node`
define [
], (
) ->
'use strict'
#
@hell0again
hell0again / gist:eca54a29a633c01b10c0
Last active August 29, 2015 14:05
promiseと読みやすさ
// 1. thenまで一気に書くとthen節の中身が入れ子状に並ぶ。関数呼び出しが先頭に並ぶので読みやすいというか見慣れた形
var filePath = "**/*.tpl";
fetchTemplateFileList(filePath).then(function(fileList) {
return Promise.all(_.map(fileList, function(filePath) {
return createHtmlTextFromTemplateFile(filePath).then(function(htmlText) {
return createTemplateTableFromHtmlText(htmlText).then(function(templateTable) {
return createModuleTextFromTemplateTable(templateTable).then(function(moduleText) {
return writeModuleFromText(moduleText, getOutFilePath(filePath)).then(function(result) {
console.log("wrote "+ getOutFilePath(filePath));
});
@hell0again
hell0again / gist:c957c09702ccd30c9b9a
Last active November 19, 2015 04:04
Androidのtouchmoveとtouchend
- これまでの経緯
- clickイベントは発生が遅いから自前でタップイベントを実装する
- 自前のタップ実装だとAndroidで反応が漏れることがたまによくある
- よくよく調べるとtouchmoveが1回しか発生してなかったり
- ひとまずOSの挙動をまねてみることにする
- 前提
- SO-05D(Galaxy SX)
- Android4.1.2
@hell0again
hell0again / gist:0e560c403e99a8506563
Created July 3, 2014 12:41
Web InspectorのNetworkビューからすべてのscriptを引っ張ってくるスニペット
/**
* list up all script appers in NetworkLogView
*/
function getManagedInstanceOf (obj) {
var observers = WebInspector.targetManager._observers;
for (var i = observers.length; i--;) {
if ( observers[i] instanceof obj ) {
return observers[i];
}
}
@hell0again
hell0again / gist:1f5c9f6f1f84fb1690ec
Created May 8, 2014 17:38
xlsxをunzipしてxmllint formatして再度zipにする
#!/bin/bash
## xlsxをunzipしてxmllint formatして再度zipしても読める事を確認
# FLATTEN2の中身を直接書き換えて最後のzipコマンドを実行してもxlsxとして読める
ORIGINAL=time_sample.xlsx
FLATTEN1=flatten
FLATTEN2=reflatten
REZIP1=flatten.xlsx
REZIP1=reflatten.xlsx
rm -rf ${REZIP1} ${REZIP2} ${FLATTEN1} ${FLATTEN2}
#!/usr/bin/perl
# mtimeを揃える
# same_mtime dir1 dir2
use strict;
use File::Find;
my @d = @ARGV;
my $our_mtime = 0;
sub _mtime {
my @st = stat $_;
$our_mtime = $st[9] if ($our_mtime < $st[9]);