Skip to content

Instantly share code, notes, and snippets.

@torounit
torounit / .bowerrc
Last active August 29, 2015 14:06
最近のフロントエンドの初期設定。一応WordPress案件用に作ったけど他でも使えます。macであればinit.shすればだいたいokです。
{
"directory": "vendor/assets/bower_components",
"json": "bower.json"
}
@jehna
jehna / import_backup.py
Last active September 11, 2021 04:36
App Engine import data from Datastore Backup to localhost
"""
# App Engine import data from Datastore Backup to localhost
You can use this script to import large(ish) App Engine Datastore backups to your localohst dev server.
## Getting backup files
Follow instructions from Greg Bayer's awesome article to fetch the App Engine backups:
http://gbayer.com/big-data/app-engine-datastore-how-to-efficiently-export-your-data/
@gregorynicholas
gregorynicholas / dev_appservers.yaml
Last active March 28, 2016 20:08
google appengine dev_appserver commands automated with paver.
default:
args:
url: localhost
port: 8888
address: 0.0.0.0
partition: s
flags:
- use_sqlite
- high_replication
- allow_skipped_files
@hissy
hissy / wp-query-ref.php
Last active May 1, 2023 01:53 — forked from luetkemj/wp-query-ref.php
WP: Query $args
<?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
*/