I hereby claim:
- I am sweenzor on github.
- I am sweeney (https://keybase.io/sweeney) on keybase.
- I have a public key whose fingerprint is 621C AD2A 3DF2 14B8 A97D 5B63 6399 783C 349C 36D4
To claim this, I am signing this object:
import time | |
import datetime | |
import sqlite3 | |
import json | |
# Based on https://github.com/ydkhatri/mac_apt/blob/master/plugins/notes.py | |
query = """ | |
SELECT | |
n.ZNOTE as id, | |
c1.ZTITLE1 as title, |
#!/usr/bin/env python3.6 | |
import os | |
import sys | |
from hashlib import md5 | |
from argparse import ArgumentParser | |
parser = ArgumentParser(description='Compare an S3 etag to a local file') | |
parser.add_argument('inputfile', help='The local file') | |
parser.add_argument('etag', help='The etag from s3') |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>32BitSupportedModels</key> | |
<array> | |
<string>MacBook7,1</string> | |
<string>MacBookAir5,2</string> | |
<string>MacBookPro10,1</string> | |
<string>MacPro5,1</string> |
<?php | |
function md5sum($filenm) | |
{ | |
$val = md5_file($filenm); | |
echo $filenm.":".$val."<br/>"."\n"; | |
} | |
//read folder |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
###################################### | |
## tangle - triangle fun for the K3 ## | |
## version 1.0 by geekmaster ## | |
##----------------------------------## | |
## WARNING: K3 eips '' very slow... ## | |
## so use eips only in OUTER loops! ## | |
###################################### | |
#================================= |
import random | |
import signal | |
import gevent | |
import redis | |
REDIS_URL = 'redis://127.0.0.1:6379' | |
REDIS_CHANNEL = 'pubsub_demo' |
/** | |
* Retrieves all inbox threads and tags them | |
* that way, when you accidentally archive something, | |
* you can figure out what it was! | |
* https://script.google.com/macros/ | |
*/ | |
function auditLogInbox() { | |
var threads = GmailApp.getInboxThreads(); | |
var label = GmailApp.getUserLabelByName("auditlog"); | |
label.addToThreads(threads); |
find ~ -name .git | xargs -I % git --git-dir=% remote -v |