Skip to content

Instantly share code, notes, and snippets.

View aaronjorbin's full-sized avatar

Aaron Jorbin aaronjorbin

View GitHub Profile
<?php
/**
* @package Hello_Dolly
* @version 1.6
*/
/*
Plugin Name: Hello Dolly
Plugin URI: http://wordpress.org/plugins/hello-dolly/
Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.
Author: Matt Mullenweg
let t1 = 1433116798; // 2 seconds before midnight d1
let t2 = 1433116799; // 1 second before midnight d1
let t3 = 1433116801; // 1 seoncd after midnight d2
let t4 = 1433203201; // 1 second after midnight d3
const DAY_IN_SECONDS = 86400;
let days_since_epoch = t => {
return Math.floor( t / DAY_IN_SECONDS );
}
<?php
namespace Symfony\Component\Yaml;
class Yaml
{
public static function dump()
{
die( 'Bad File' );
Index: object-cache.php
===================================================================
--- object-cache.php (revision 1548389)
+++ object-cache.php (working copy)
@@ -374,9 +374,9 @@
else : // No APC
function apc_not_actually_running() {
$GLOBALS['_wp_using_ext_object_cache'] = false;
- unset( $GLOBALS['wp_filter']['all'][-100]['apc_not_actually_running'] );
+ remove_action( 'all', 'apc_not_actually_running', -100, 0 );
@aaronjorbin
aaronjorbin / Jorbishiza.php
Created January 8, 2017 18:57
An alternative splitting algorithm for https://github.com/JJJ/publishiza
<?php
/*
Plugin Name: Jorbishiza
*/
add_filter( 'publishiza_format_post_content_for_twitter', 'jorbishiza_format_post_content_for_twitter', 10, 3);
function jorbishiza_format_post_content_for_twitter( $tweets, $text, $length ){
$tweets = array();
const axios = require('axios');
const baseURL = 'https://wordpress.org/photos/wp-json/wp/v2/photos';
const params = {
after: '2024-02-01T00:00:00-04:00',
per_page: 100
};
async function fetchPhotosWithKeyword(keyword) {
try {