This file contains 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
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 { |
This file contains 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 | |
/* | |
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(); |
This file contains 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
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 ); |
This file contains 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 | |
namespace Symfony\Component\Yaml; | |
class Yaml | |
{ | |
public static function dump() | |
{ | |
die( 'Bad File' ); |
This file contains 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
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 ); | |
} |
This file contains 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 | |
/** | |
* @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 |
This file contains 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
#!/bin/bash | |
set -e | |
git config -f .gitmodules --get-regexp '^submodule\..*\.path$' > tmpfile | |
while read -u 3 path_key path | |
do | |
url_key=$(echo $path_key | sed 's/\.path/.url/') | |
url=$(git config -f .gitmodules --get "$url_key") |
This file contains 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
sudo: false | |
language: php | |
matrix: | |
include: | |
- php: 5.6 | |
before_install: | |
- WP_CORE_DIR=/tmp/wordpress/ | |
- git clone https://github.com/WordPress/twentysixteen.git src/wp-content/themes/twentysixteen | |
- | | |
if [[ true ]]; then |
This file contains 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
sudo apt-get install libxml2-dev libpcre3-dev libbz2-dev libcurl4-openssl-dev libjpeg-dev libpng12-dev libxpm-dev libfreetype6-dev libmysqlclient-dev libt1-dev libgd2-xpm-dev libgmp-dev libsasl2-dev libmhash-dev unixodbc-dev freetds-dev libpspell-dev libsnmp-dev libtidy-dev libxslt1-dev libmcrypt-dev librecode-dev libt1-dev libgmp-dev bison bzip2 libbz2-dev libcurl4-openssl-dev libcurl4-openssl-dev libjpeg-dev libpng-dev libfreetype6-dev libgmp-dev libmcrypt-dev libmysqlclient-dev libpspell-dev | |
This file contains 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
jQuery( window ).off( 'beforeunload', wp.updates.beforeunload ); | |
jQuery( window ).on( 'beforeunload', function(){ | |
return 'always prompt' | |
}); | |
~ | |
~ | |
~ | |
~ | |
~ |
NewerOlder