- add custom tags
- add function to native tag
- hard to maintain
- shadow DOM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm ERR! cb() never called! | |
| npm ERR! not ok code 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env node | |
| // vim: set tabstop=2 shiftwidth=2 softtabstop=2 expandtab : | |
| /* jshint indent:2 */ | |
| /* global require */ | |
| var scraper = require('scraper'), | |
| GitHubApi = require('github'), | |
| usersId = [], github; | |
| scraper('http://sassconf.com/schedule/', function (err, $) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/backbone.js b/backbone.js | |
| index 2171292..fd83e56 100644 | |
| --- a/backbone.js | |
| +++ b/backbone.js | |
| @@ -1162,8 +1162,12 @@ | |
| params.type = 'POST'; | |
| if (options.emulateJSON) params.data._method = type; | |
| var beforeSend = options.beforeSend; | |
| - options.beforeSend = function(xhr) { | |
| - xhr.setRequestHeader('X-HTTP-Method-Override', type); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # git-feature-start - Git リポジトリディレクトリで、指定したブランチ名でブランチを作成し、合わせてリモートブランチも作成するコマンド | |
| # | |
| pushd `dirname $0` >/dev/null 2>&1 | |
| [ $? -eq 1 ] && exit 1 | |
| __script_dir=`pwd` | |
| popd >/dev/null 2>&1 | |
| __base_dir=`dirname ${__script_dir}` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let g:indent_guides_enable_on_vim_startup = 1 | |
| let g:indent_guides_start_level = 2 | |
| let g:indent_guides_guide_size = 1 | |
| let g:indent_guides_exclude_filetypes = ['help', 'nerdtree', 'tagbar', 'unite'] |
Chrome Tech Talk Night #8 - connpass
Chrome Tech Talk Night #8 を開催します - Google Developer Japan Blog
こちらのイベントに来ているので、メモ取っていく。英語の講演だから間違ってるかもしれないっす。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .ico-hoge-sp { | |
| background-image: image-url('sprite@2.png'); | |
| width: 109px; | |
| height: 29px; | |
| background-position: 0px -103px; | |
| background-repeat: no-repeat; | |
| background-size: 322px auto; | |
| } |