Skip to content

Instantly share code, notes, and snippets.

View StealthMicro's full-sized avatar

Robert Mann StealthMicro

View GitHub Profile
@StealthMicro
StealthMicro / countries
Created December 27, 2021 22:16 — forked from kalinchernev/countries
Plain text list of countries
Afghanistan
Albania
Algeria
Andorra
Angola
Antigua & Deps
Argentina
Armenia
Australia
Austria
@StealthMicro
StealthMicro / ErrorHandler.class.php
Created September 19, 2017 16:22 — forked from Jamesking56/ErrorHandler.class.php
PHP: Simple PHP error handler with extra features.
<?php
/*
ErrorHandler Class
By James King
v0.1 Alpha
WARNING: This class is still in ALPHA phase. Not recommended for production.
Manages and handles any PHP errors found in your script.
@StealthMicro
StealthMicro / oauth.php
Created September 19, 2017 16:21 — forked from Jamesking56/oauth.php
Wordpress to Tumblr
<?php
$req_url = 'http://www.tumblr.com/oauth/request_token';
$authurl = 'http://www.tumblr.com/oauth/authorize';
$acc_url = 'http://www.tumblr.com/oauth/access_token';
$conskey = 'YOUR CONSUMER KEY';
$conssec = 'YOUR CONSUMER SECRET';
session_start();
@StealthMicro
StealthMicro / WordPress.class.php
Created September 19, 2017 16:20 — forked from Jamesking56/WordPress.class.php
Read Wordpress Export XML to PHP
<?php
/**
* WordPress class - Manages the WordPress XML file and gets all data from that.
*/
class Wordpress
{
public static $wpXML;
@StealthMicro
StealthMicro / Makefile
Created December 11, 2015 01:59 — forked from isaacs/Makefile
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.