- Cloudベースのネットワークやアプリを作ってる
- 同期的なイベント
- 革新的なテクノロジー
- コミュニケーションの進化
- 現状は普及期
| .ico-hoge-sp { | |
| background-image: image-url('[email protected]'); | |
| width: 109px; | |
| height: 29px; | |
| background-position: 0px -103px; | |
| background-repeat: no-repeat; | |
| background-size: 322px auto; | |
| } |
Chrome Tech Talk Night #8 - connpass
Chrome Tech Talk Night #8 を開催します - Google Developer Japan Blog
こちらのイベントに来ているので、メモ取っていく。英語の講演だから間違ってるかもしれないっす。
| 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'] |
| #!/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}` |
| 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); |
| #!/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, $) { |