A Pen by DriftwoodJP on CodePen.
This file contains 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
'use strict'; | |
require('babel-polyfill'); | |
const _ = require('underscore'); | |
const $ = require('jquery'); | |
const Backbone = require('backbone'); | |
/** | |
* Backbone.js入門 (全22回) - プログラミングならドットインストール |
This file contains 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
'use strict'; | |
require('babel-polyfill'); | |
const _ = require('underscore'); | |
const $ = require('jquery'); | |
const Backbone = require('backbone'); | |
/** | |
* Backbone.js入門 (全22回) - プログラミングならドットインストール |
This file contains 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
<?php | |
/** | |
* WordPress でスクリプトとスタイルをキューに入れる | |
* | |
* @link http://notnil-creative.com/blog/archives/1299 | |
* @return boolean wp_enqueue_scripts をフックし my_scripts を有効化。常に true。 | |
*/ | |
function my_scripts() { | |
// 管理画面では読み込まない |
This file contains 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
{ | |
"remove-empty-rulesets": true, | |
"always-semicolon": true, | |
"color-case": "lower", | |
"block-indent": " ", | |
"color-shorthand": true, | |
"element-case": "lower", | |
"eof-newline": true, | |
"leading-zero": false, | |
"quotes": "single", |
This file contains 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 clone all remote branches locally | |
# https://coderwall.com/p/0ypmka/git-clone-all-remote-branches-locally | |
for branch in `git branch -a | grep remotes | grep -v HEAD | grep -v master `; do | |
git branch --track ${branch#remotes/origin/} $branch | |
done |
This file contains 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/ruby | |
require 'readline' | |
# Create cask list | |
puts "\nCreate cask list...\n" | |
list = `brew cask list` | |
casks = list.delete(' (!)').split("\n") | |
puts "#{casks}\n" | |
# Check update cask |
A Pen by DriftwoodJP on CodePen.
inspired by CSS ARROW PLEASE!
thanks http://cssarrowplease.com/
A Pen by DriftwoodJP on CodePen.