I hereby claim:
- I am peterbooker on github.
- I am peterbooker (https://keybase.io/peterbooker) on keybase.
- I have a public key whose fingerprint is E2D1 65D5 5B52 2988 07AA 1EC8 B872 5CB5 530C 45B7
To claim this, I am signing this object:
<?php | |
/* | |
* Plugin Auto Updates Whitelist | |
* Allows Forced Updates for listed Plugin Slugs | |
*/ | |
function prefix_forced_update_whitelist_plugins( $update, $item ) { | |
// Examples, please add plugin slugs that you trust. | |
$plugins = array ( | |
'jetpack', 'wordpress-seo', 'plugin-slug', |
I hereby claim:
To claim this, I am signing this object:
/******/ (function(modules) { // webpackBootstrap | |
/******/ // The module cache | |
/******/ var installedModules = {}; | |
/******/ | |
/******/ // The require function | |
/******/ function __webpack_require__(moduleId) { | |
/******/ | |
/******/ // Check if module is in cache | |
/******/ if(installedModules[moduleId]) { | |
/******/ return installedModules[moduleId].exports; |
This is an overview of my research into the WordPress Plugins Repository while looking at how external tools can work with it, primarily through SVN.
Between 2017/01/14 and 2018/01/14 there were approximately 227,998 revisions (changes). Spread equally this results in:
package slurper | |
func GetExtensions(items []string) { | |
for _, item := range items { | |
data := downloadZip(item) | |
extractZip(data) | |
} | |
} |
package main | |
import ( | |
"encoding/json" | |
"encoding/xml" | |
"log" | |
"strconv" | |
"time" | |
_ "github.com/go-sql-driver/mysql" |
<?php | |
/** | |
* Inlined FontAwesome Icons. | |
* | |
* Function returns an SVG icon using the given name. | |
*/ | |
/** | |
* Outputs FontAwesome SVG Icons | |
* https://github.com/FortAwesome/Font-Awesome/tree/master/advanced-options/raw-svg/ |
<?php | |
echo '<pre>'; | |
$test_list = Health_Check_Site_Status::get_tests(); | |
$tests = array_merge( $tests['direct'], $tests['async'] ); | |
$limit = 5; | |
echo '<br>'; | |
printf( | |
'Running tests with %d iterations.', | |
$limit |
<?php | |
class Health_Check_Tests_Prof_Test extends WP_UnitTestCase { | |
private $health_check_site_status; | |
private $tests_list; | |
public function setUp() { | |
parent::setUp(); |