Skip to content

Instantly share code, notes, and snippets.

@kptre
kptre / wp-query-ref.php
Created July 6, 2016 17:45 — forked from luetkemj/wp-query-ref.php
WP: Query $args
<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.com
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php
*/
$args = array(
@kptre
kptre / byte-sizetuts.md
Last active June 17, 2016 18:14 — forked from honkskillet/byte-sizetuts.md
A series of golang tutorials with youtube videos.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>the title</title>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.0/themes/base/jquery-ui.css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<form class="searchform cf">
# Enter this into Terminal to make the Dock show without a delay:
defaults write com.apple.dock autohide-delay -float 0; killall Dock;
# Maybe you want to have a long delay (5 seconds) so that you never accidentally trigger the Dock:
defaults write com.apple.dock autohide-delay -float 5; killall Dock;
# To restore defaults:
defaults delete com.apple.dock autohide-delay; killall Dock;
# ANIMATION SPEED TWEAKING