I hereby claim:
- I am Swingline0 on github.
- I am eransch (https://keybase.io/eransch) on keybase.
- I have a public key whose fingerprint is 5D6D FDEF B837 4F69 B67E 2B7F 875B 489C D5AA 4DBB
To claim this, I am signing this object:
| private void testIP3( int numOfAccounts ) { | |
| // How does 10,000 test accounts sound? | |
| Account [] accounts = new Account[numOfAccounts]; | |
| /* | |
| * In order to create a mix of the different subclasses, we'll use some | |
| * simple iteration logic to rotate what's instantiated for each position | |
| * in the array. | |
| */ |
| public class Pangram{ | |
| public static void main( String [] args ){ | |
| Pangram p = new Pangram(); | |
| p.pangramer("The quick brown fox jumps over the lazy dog."); | |
| p.pangramer("Pack my box with five dozen liquor jugs"); | |
| p.pangramer("Saxophones quickly blew over my jazzy hair"); |
| alias gs='git status ' | |
| alias gd='git diff ' | |
| alias ga='git add ' | |
| alias gc='git commit ' | |
| alias glog="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative" |
| try { | |
| // Get hostname of client | |
| String clientName = connection.getInetAddress().getHostName() | |
| + "[" + threadID + "]"; | |
| // Announce connection | |
| BizTrackMEServer.logEvent("event", clientName + " connected."); | |
| // This streams data FROM the client |
| <?php | |
| add_action('woocommerce_after_checkout_validation', 'deny_pobox_postcode'); | |
| function deny_pobox_postcode($posted) { | |
| global $woocommerce; | |
| $postcode = (isset($posted['shipping_address_1'])) ? $posted['shipping_address_1'] : $posted['billing_address_1']; | |
| $postcode = strtolower(str_replace(' ', '', $postcode)); |
| // Add Shortcode | |
| function equipment_list_shortcode( $atts ) { | |
| // Attributes | |
| extract( shortcode_atts( | |
| array( | |
| 'trip' => '', | |
| ), $atts ) | |
| ); |
| var url = 'http://www.reddit.com/r/all.json', | |
| redditData = {}; | |
| var redditGetter = function(){ | |
| http.get(url, function(res) { | |
| var body = ''; | |
| res.on('data', function(chunk) { | |
| body += chunk; | |
| }); | |
| res.on('end', function() { |
| Vagrant.configure("2") do |config| | |
| config.vm.box = "heroku" | |
| config.vm.box_url = "https://dl.dropboxusercontent.com/s/rnc0p8zl91borei/heroku.box" | |
| config.vm.network "forwarded_port", guest: 8000, host: 8080 | |
| config.vm.network "forwarded_port", guest: 1080, host: 9080 | |
| config.vm.network :private_network, ip: '192.168.50.50' | |
| config.vm.synced_folder '.', '/vagrant', nfs: true | |
| config.vm.provider "virtualbox" do |v| | |
| host = RbConfig::CONFIG['host_os'] |
I hereby claim:
To claim this, I am signing this object:
| if ( ! defined( 'ABSPATH' ) ) exit; | |
| add_action( 'plugins_loaded', array( 'Plugin_Class_Name', 'get_instance' ) ); | |
| class Plugin_Class_Name { | |
| private static $instance = null; | |
| public static function get_instance() { | |
| if ( ! isset( self::$instance ) ) |