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
function add_rewrite_rules( $wp_rewrite ) { | |
$new_rules = array( | |
'blog/(.+?)?$' => 'index.php?post_type=post&name=' . $wp_rewrite->preg_index(1), | |
); | |
$wp_rewrite->rules = $new_rules + $wp_rewrite->rules; | |
} | |
add_action('generate_rewrite_rules', 'add_rewrite_rules'); | |
function change_blog_links($post_link, $id=0) { | |
$post = get_post($id); |
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
// Now available in package form at https://github.com/rjz/githubhook | |
package handler | |
// https://developer.github.com/webhooks/ | |
import ( | |
"crypto/hmac" | |
"crypto/sha1" | |
"encoding/hex" | |
"errors" |
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
import { writable } from 'svelte/store' | |
// returns a store with HTTP access functions for get, post, patch, delete | |
// anytime an HTTP request is made, the store is updated and all subscribers are notified. | |
export default function(initial) { | |
// create the underlying store | |
const store = writable(initial) | |
// define a request function that will do `fetch` and update store when request finishes | |
store.request = async (method, url, params=null) => { |
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
#!/usr/bin/env bash | |
# wmtt: wm testing tool | |
# built from the awmtt script | |
#Default Variables | |
#TODO make this arg passable | |
WM="openbox-session" | |
ME=$(basename ${0}) | |
# Display and window size | |
D=1 |
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
#!/usr/local/bin/php | |
<?php | |
if (php_sapi_name() !== 'cli') { | |
return; | |
} | |
date_default_timezone_set('Europe/Paris'); | |
require_once 'vendor/autoload.php'; | |
use Symfony\Component\Yaml\Yaml; | |
try { |
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
function array2csv($data, $delimiter = ',', $enclosure = '"', $escape_char = "\\"){ | |
$f = fopen('php://memory', 'r+'); | |
foreach ($data as $item) { | |
fputcsv($f, $item, $delimiter, $enclosure, $escape_char); | |
} | |
rewind($f); | |
return stream_get_contents($f); | |
} | |
$list = array ( |
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
<?php | |
function nl2p($string) { | |
$paragraphs = ''; | |
foreach (explode("\n\n", $string) as $line) { | |
if (trim($line)) { | |
$paragraphs .= '<p>' . trim($line) . '</p>'; | |
} | |
} | |
return nl2br($paragraphs); | |
} |
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
<?php | |
// Manually create entries and send notifications with Gravity Forms | |
$form_id = 10; | |
// add entry | |
$entry = array( | |
"form_id" => $form_id, | |
"1" => "Entry for field ID 1", |
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
mkdir jpg1 | |
convert "*-cabinet-*.png[580x]" -set filename:base "%[base]" -quality 90 -format jpg -background white -alpha remove "jpg1/%[filename:base].jpg" | |
convert "*-shell-*.png[580x]" -set filename:base "%[base]" -background white "jpg1/%[filename:base].png" |
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
// This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref | |
<?php | |
/** | |
* WordPress Query Comprehensive Reference | |
* Compiled by luetkemj - luetkemj.github.io | |
* | |
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
* Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php | |
*/ |
NewerOlder