Skip to content

Instantly share code, notes, and snippets.

View insanedefaults's full-sized avatar
Sailin' on by

Michael Anthony insanedefaults

Sailin' on by
View GitHub Profile
@insanedefaults
insanedefaults / referoneliner.bash
Created July 6, 2017 21:39
Star Citizen Referral Code Randomizer Script
curl 'http://gorefer.me/randomizer/submit_ajax.php?set=STAR&code=STAR-P47M-3LJT&time='$(date +%s000) \
-H 'Pragma: no-cache' \
-H 'DNT: 1' \
-H 'Accept-Encoding: gzip, deflate' \
-H 'Accept-Language: en-US,en;q=0.8' \
-H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36' \
-H 'Accept: text/html, */*; q=0.01' \
-H 'Referer: http://gorefer.me/starcitizen/' \
-H 'X-Requested-With: XMLHttpRequest' \
-H 'Connection: keep-alive' \
#!/bin/bash
echo beginnning
# Colors
red='\x1b[0;31m'
yellow='\x1b[0;33m'
green='\x1b[0;32m'
teal='\x1b[0;36m'
blue='\x1b[0;34m'

Disable Plugins

Quickly disable all plugins in WordPress.

Usage

This plugin needs to go into the wp-content/mu-plugins/ directory. Provided you have SSH access to the server where WordPress lives, you can do this:

cd $SITE_ROOT/wp-content/mu-plugins
@insanedefaults
insanedefaults / inode_counter.sh
Created July 15, 2015 01:54
Count inodes in style
function inode_counter() {
#give me a path
#i'll count the inodes recursively
#I'm pretty slow, but I'm real purdy
path=$1
z=0
find $path 2>/dev/null | while read x
do ((z++))
printf '\r%-16s %-8s' "$install" "$z"
done
@insanedefaults
insanedefaults / example.md
Last active August 29, 2015 14:23
Turns off a given plugin for each subsite on a WordPress multisite. This is useful if the plugin isn't activated network-wide.
$ turnoffplugin query-monitor
site.com/ :: Success: Plugin 'query-monitor' deactivated.
test.site.com/ :: not deactivating, plugin status is inactive
test2.site.com/ :: not deactivating, plugin status is inactive
$ turnoffplugin query-monitor
site.com/ :: not deactivating, plugin status is inactive
<?php
/**
* This file can be used to validate that the WordPress wp_mail() function is working.
* To use, change the email address in $to below, save, and upload to your WP root.
* Then browse to the file in your browser.
*
* For full discussion and instructions, see the associated post here:
* http://b.utler.co/9L
*
* Author: Chad Butler

Tell us a little bit about yourself:

Birthday:

June 15th

Age:

About to enter my 3rd decade of life

@insanedefaults
insanedefaults / geoip.py
Last active August 29, 2015 14:19
Python CLI tool for geoip lookup
from multiprocessing import Pool
import argparse
import requests
import sys
#Functions
def getgeo(ip):
"""Give this a string of an IPv4 or IPv6 address
Returns a dict with geographical data about the ip
"""
@insanedefaults
insanedefaults / asha.py
Last active August 29, 2015 14:17
Python Example
# for asha
# This is a list of dictionaries, saved into people
people = [
{
'name' : 'tim',
'eyes' : 'brown',
'silly' : False
},
{