This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// clang -g -O2 -Wall -framework Cocoa -framework Foundation -framework ApplicationServices ./drab.m -o drab | |
/* | |
<?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>color</key> | |
<array> | |
<string>Terminal</string> | |
</array> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>spam domain confetti</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | |
</head> | |
<body> | |
<canvas id="canvas" style="width:100%; height:100%" /> | |
<script> | |
var canvas1, ctx, W, H; | |
if (screen.width >= 988) var mp = 150; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# shitcoin generator | |
# usage example: | |
# ./shitgen.sh shitcoin stc 9999 | |
IFS=$'\n' | |
SED=sed | |
which gsed > /dev/null | |
if [[ $? == '0' ]]; then | |
SED=gsed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE EXTERNAL TABLE IF NOT EXISTS discogs.artist ( | |
`id` int, | |
`name` string, | |
`realname` string, | |
`profile` string, | |
`data_quality` string | |
) | |
ROW FORMAT SERDE 'org.openx.data.jsonserde.JsonSerDe' | |
WITH SERDEPROPERTIES ('serialization.format' = '1', 'ignore.malformed.json' = 'true') | |
LOCATION 's3://{s3_bucket}/artist' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AA | Ann Arbor Railroad | |
---|---|---|
AALX | Advanced Aromatics LP | |
AAMX | ACFA Arrendadora de Carros de Ferrocarril S.A. | |
AAR | Association of American Railroads | |
AATX | Ampacet Corporation | |
AB | Akron and Barberton Cluster Railway Company | |
ABB | Akron and Barberton Belt Railroad Company | |
ABBX | Abbott Labs | |
ABIX | Anheuser-Busch Incorporated | |
ABL | Alameda Belt Line |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import sys | |
def print_figure(figure, on=' * ', off=' '): | |
for i in range(12): | |
if i % 3 == 0 and i != 0: | |
sys.stdout.write('\n') | |
sys.stdout.write(on if i in figure else off) | |
sys.stdout.write('\n') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import uuid | |
from obfsproxy.transports.base import BaseTransport | |
from itertools import product | |
SALISBURY = 'salisbury' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import subprocess | |
s = 'salisbury' | |
r = 'robitussin' | |
v = ['a', 'e', 'i', 'o', 'u', 'y'] | |
def _pick(s, cs, vs, cov): | |
if len(cs) == 0: | |
return s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SafeEjectGPUAgent | |
bluetooth | |
CacheDelete | |
socketfilterfw | |
Air | |
ScopedBookmarkAgent | |
uninstall | |
ookmark | |
.xpc | |
ProtectedCloud |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
WORK_DIR="$(mktemp -d)" | |
IN_PATH1="$1" | |
IN_PATH2="$2" | |
IN_FN1=$(basename "$IN_PATH1") | |
IN_FN2=$(basename "$IN_PATH2") | |
cp "$IN_PATH1" "$WORK_DIR" | |
cp "$IN_PATH2" "$WORK_DIR" | |
IN_PATH1_TMP="$WORK_DIR/$IN_FN1" | |
IN_PATH2_TMP="$WORK_DIR/$IN_FN2" |
NewerOlder