Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am nomenclatures on github.
  • I am tyrantina (https://keybase.io/tyrantina) on keybase.
  • I have a public key ASC6vihReij3hxHMnlXVsOTgJ_Og7I4jwsUj0f3aRKjskgo

To claim this, I am signing this object:

### Keybase proof
I hereby claim:
* I am nomenclature on github.
* I am tyrantina (https://keybase.io/tyrantina) on keybase.
* I have a public key ASC6vihReij3hxHMnlXVsOTgJ_Og7I4jwsUj0f3aRKjskgo
To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am nomenclature on github.
  • I am tyrantina (https://keybase.io/tyrantina) on keybase.
  • I have a public key ASC6vihReij3hxHMnlXVsOTgJ_Og7I4jwsUj0f3aRKjskgo

To claim this, I am signing this object:

@frankiejarrett
frankiejarrett / site-remove.sh
Last active June 7, 2021 09:55
Remove a virtual host from Apache
#!/bin/bash
echo "Enter the domain of the site you want to remove:"
read DOMAIN
if [ ! -d /var/www/$DOMAIN ]; then
echo -e "\x1b[1;31mError:\e[0m $DOMAIN does not exist!"
@git-core
git-core / sdk_version.patch
Created May 9, 2012 07:22
su patch: log sdk version
--- a/activity.cpp
+++ b/activity.cpp
@@ -27,6 +27,7 @@ extern "C" {
#include "su.h"
#include <private/android_filesystem_config.h>
#include <cutils/properties.h>
+#include <cutils/log.h>
}
using namespace android;
@rajapaju
rajapaju / facebook-login.sh
Created October 12, 2011 18:00 — forked from hubgit/facebook-login.sh
Login to Facebook using cURL
#!/bin/bash
# If it redirects to http://www.facebook.com/login.php at the end, wait a few minutes and try again
EMAIL='YOUR_EMAIL' # edit this
PASS='YOUR_PASSWORD' # edit this
COOKIES='cookies.txt'
USER_AGENT='Firefox/3.5'