Skip to content

Instantly share code, notes, and snippets.

View skopp's full-sized avatar

Rashaad Essop skopp

View GitHub Profile
@skopp
skopp / skopp.json
Last active December 20, 2015 20:19 — forked from scottksmith95/bit.json
The name's Json. Skopp Json. O_o
{
"name": "Rashaad Essop",
"title": "coder / disk jockey / proet",
"location": "johannesburg, south africa",
"website_link": "http://skopp.skuda.net",
"bio": "http://about.me/skopp ",
"created": "2012-11-06T23:14:47Z",
"updated": "2013-08-08T16:42:55Z",
"views": 1028,
"rank": 160,
@skopp
skopp / README.md
Last active December 20, 2015 10:39
version 2 / end July 2013

LiveReload How do I start using LiveReload? ← Getting Started Step 1. Get and install the app. On a Mac:

Download the latest stable version (v2.3.26) — provides an unlimited free trial and should recognize your Mac App Store license if you have one Purchase from the Mac App Store (v2.3.27) Is my Mac compatible with LiveReload? On Windows:

@skopp
skopp / evil_html.perl
Last active December 20, 2015 08:28
the evil html page
#!/usr/bin/perl
print <<EOF;
Content-type: text/html
Set-Cookie: UserTrackerPRO=4.0; UID=640; expires=Friday, 31-Dec-1999 23:59:59 GMT
<html> <head>
<title>THE EVIL HTML PAGE</title>
<script>
#depends on underscore
_.isConstructor = (thing) ->
if thing.name && thing.name[0].toUpperCase() == thing.name[0]
true
else
false
class Instrumentor
constructor: (namespace) ->
@skopp
skopp / README
Created July 28, 2013 06:15 — forked from FND/README
RequireJS sample
@skopp
skopp / DATABASE
Created July 28, 2013 06:15 — forked from FND/DATABASE
# INT = integer
# STR = string
# () = set
# [] = list
# == USERS ==
#
# users = () # usernames -- XXX: use list?
# users
# enum = INT
@skopp
skopp / pinboard.py
Created July 28, 2013 06:13
meant for pythonista... todo: assess and hack for other apps/uses
import os
import markdown
import requests
import webbrowser
pinToken = 'Put your Pinboard API token here'
pinAPI = 'api.pinboard.in/v1/'
pinGet = 'posts/all'
pinURL = 'https://' + pinAPI + pinGet + '?auth_token=' + pinToken + '&toread=yes&format=json'
@skopp
skopp / _config.yml
Last active December 20, 2015 07:59 — forked from seraphyn/_config.yml
# Google Plus Profile
# Hidden: No visible button, just add author information to search results
googleplus_user: 112735778092864419421
googleplus_hidden: yes
googleplus_profile_display: block
googleplus_post_display: block
googleplus_post_amount: 10
# Google Api Console
google_api_key: AIzaSyCqR5_JXEJlRpJJmjLwiRxNR2M5xyxEOBI
@skopp
skopp / repo.py
Created July 28, 2013 06:05 — forked from FND/repo.py
"""
generate HTML overview of a GitHub user's repositories
results are sent to STDOUT
Usage:
$ python repo.py <username>
"""
@skopp
skopp / index.html
Created July 28, 2013 06:02 — forked from FND/index.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Cork - virtual pinboard</title>
<link rel="stylesheet" type="text/css" href="styles/main.css">
<link rel="stylesheet" type="text/css" href="styles/jquery.ui.css">
</head>