I hereby claim:
- I am jabs on github.
- I am major_key_alert (https://keybase.io/major_key_alert) on keybase.
- I have a public key whose fingerprint is D10B 6743 E22C 455E 1905 8239 89FF 5D47 57C7 5078
To claim this, I am signing this object:
{% comment %} | |
This file is licensed under the MIT License (MIT) available on | |
http://opensource.org/licenses/MIT. | |
{% endcomment %} | |
<div class="helper-accordion js-helper-accordion" data-number="2" data-type="user"> | |
<div class="helper-header"> | |
<div class="helper-header-row"> | |
<h2 id="wizardUserTitle" class="helper-title">{% translate wizard-user-title choose-your-wallet %}</h2> |
I hereby claim:
To claim this, I am signing this object:
<?php | |
/** | |
* Template Name: Jud Static HTML | |
*/ | |
?> | |
<!doctype html> | |
<html class="no-js" lang=""> | |
<!-- boilerplate html modified from https://github.com/h5bp/html5-boilerplate/blob/master/src/index.html --> | |
<head> | |
<meta charset="utf-8"> |
#!/bin/bash | |
# If you are using Vultr as a VPS service and you run this in as your startup script, then you should see the results in /tmp/firstboot.log | |
# The script will take some time to run. You can view progress when you first log in by typing in the command: | |
# tail -f /tmp/firstboot.log | |
echo "Starting installation of Geth + ChainLink node" | |
# Install dependencies | |
apt update -y && apt upgrade -y |
function price(coin) { | |
const info = { | |
request: { | |
} | |
} | |
} |
<?php | |
class util { | |
public static function deleteDir($dirPath) { | |
if (! is_dir($dirPath)) { | |
throw new InvalidArgumentException("$dirPath must be a directory"); | |
} | |
if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') { | |
$dirPath .= '/'; | |
} |
// we on the webserver here | |
var total = 0; // current amount of votes as a dollar figure (or coin amount?) | |
var spentAddresses = []; | |
var vote = sentvote; | |
var walletAddr = vote.Addr; | |
var voteWithWeight= walletAddr.utxo; |
This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This is accurate as of WordPress 4.8, and includes some upcoming changes in WordPress 4.9.
There are a few TODOs left. Please bear with me.
<?php | |
/** | |
* Verify WP Core files md5 checksums, outside WordPress. | |
* Use this script to verify md5 checksums of WordPress core files. | |
* | |
* Follow me on Twitter: @HertogJanR | |
* Please donate: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=J24FGGU96YSUY | |
*/ | |
/*if ( version_compare( PHP_VERSION, '5.6.29', '<' ) ) { |
function custom_query_shortcode($atts) { | |
// EXAMPLE USAGE: | |
// [loop the_query="showposts=100&post_type=page&post_parent=453"] | |
// Defaults | |
extract(shortcode_atts(array( | |
"the_query" => '' | |
), $atts)); |