inspired by CSS ARROW PLEASE!
thanks http://cssarrowplease.com/
A Pen by DriftwoodJP on CodePen.
body { | |
font-family: Helvetica, arial, sans-serif; | |
font-size: 14px; | |
line-height: 1.6; | |
padding-top: 10px; | |
padding-bottom: 10px; | |
background-color: white; | |
padding: 30px; } | |
body > *:first-child { |
<?php | |
/** | |
* WordPress Query Comprehensive Reference | |
* Compiled by luetkemj - luetkemj.com | |
* Japanese translated by hissy | |
* | |
* CODEX: http://wpdocs.sourceforge.jp/%E9%96%A2%E6%95%B0%E3%83%AA%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9/WP_Query#.E3.83.91.E3.83.A9.E3.83.A1.E3.83.BC.E3.82.BF | |
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php | |
* Original: https://gist.github.com/luetkemj/2023628/9e911982440141a13cb1dd8ba1ad6b35cd7bbdd7 | |
*/ |
inspired by CSS ARROW PLEASE!
thanks http://cssarrowplease.com/
A Pen by DriftwoodJP on CodePen.
A Pen by DriftwoodJP on CodePen.
A Pen by DriftwoodJP on CodePen.
#!/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 |
#!/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 |
{ | |
"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", |
<?php | |
/** | |
* WordPress でスクリプトとスタイルをキューに入れる | |
* | |
* @link http://notnil-creative.com/blog/archives/1299 | |
* @return boolean wp_enqueue_scripts をフックし my_scripts を有効化。常に true。 | |
*/ | |
function my_scripts() { | |
// 管理画面では読み込まない |