- ideavim
- emmet
tab
でhtmlを展開- 使い方
- preferences > editor > emmet > html > Enable abbreviation previewにチェックするとtabする前にhtmlをプレビューしてくれる
- LiveEdit
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure("2") do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
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
var column = {'id':0,'posted_count':1,'ja':2,'en':3}; | |
function slack(message) { | |
var url = 'https://slack.com/api/chat.postMessage'; | |
var token = 'FILL ME IN'; | |
var channel = 'FILL ME IN'; | |
var text = message; | |
var username = 'FILL ME IN'; | |
var parse = 'full'; | |
var icon_emoji = ':sunny:'; |
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
site "http://community.opscode.com/api/v1" | |
cookbook 'apt' | |
cookbook 'build-essential' | |
cookbook 'mysql', '5.5.3' | |
cookbook 'ruby_build' | |
cookbook 'nodejs' | |
cookbook 'rbenv', git: 'https://github.com/aminin/chef-rbenv' | |
cookbook 'vim' |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
# Use Ubuntu 14.04 Trusty Tahr 64-bit as our operating system | |
config.vm.box = "ubuntu/trusty64" | |
# Configurate the virtual machine to use 2GB of RAM |
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
/*! | |
* YUI 3.5.0 - reset.css (http://developer.yahoo.com/yui/3/cssreset/) | |
* http://cssreset.com | |
* Copyright 2012 Yahoo! Inc. All rights reserved. | |
* http://yuilibrary.com/license/ | |
*/ | |
/* | |
TODO will need to remove settings on HTML since we can't namespace it. | |
TODO with the prefix, should I group by selector or property for weight savings? | |
*/ |
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
// 全コアファイルのインポート用SCSSファイル | |
@import "core/setting"; | |
@import "core/utility"; | |
@import "core/utility-css3"; | |
@import "core/style-mixin-reset"; | |
@import "core/style-mixin-base"; | |
@import "core/style-mixin-layout"; | |
@import "core/style-mixin-module"; |
ブランチを作成する
git branch branch_name
ブランチを作成して、チェックアウトもする
git checkout -b branch_name