This file contains hidden or 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
<?xml version='1.0' encoding='UTF-8'?> | |
<klxml v='16' a='MTL'> | |
<document><properties><creator><![CDATA[net.hexler.KodeLife]]></creator><creatorVersion><![CDATA[1.0.1.153]]></creatorVersion><versionMajor>1</versionMajor><versionMinor>1</versionMinor><versionPatch>1</versionPatch><author><![CDATA[]]></author><comment><![CDATA[]]></comment><enabled>1</enabled><size><x>500</x><y>500</y></size><clearColor><x>0</x><y>0</y><z>0</z><w>1</w></clearColor><selectedRenderPassIndex>1</selectedRenderPassIndex><selectedKontrolPanelIndex>0</selectedKontrolPanelIndex><uiExpandedPreviewDocument>0</uiExpandedPreviewDocument><uiExpandedPreviewRenderPass>1</uiExpandedPreviewRenderPass><uiExpandedProperties>1</uiExpandedProperties></properties><params><uiExpanded>1</uiExpanded><param type='CLOCK'><displayName><![CDATA[Clock]]></displayName><variableName><![CDATA[time]]></variableName><uiExpanded>0</uiExpanded><running>1</running><direction>1</direction><speed>1</speed><loop>0</loop><loopStart>0</loopStart><loopEnd>6.28319</loopEnd> |
This file contains hidden or 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
andre@boop RadeonProRenderSDK % file tutorials/Bin/01_camera_setup64 | |
tutorials/Bin/01_camera_setup64: Mach-O 64-bit executable x86_64 | |
andre@boop RadeonProRenderSDK % ./tutorials/Bin/01_camera_setup64 | |
dyld: Library not loaded: @rpath/libRadeonProRender64.dylib | |
Referenced from: /Users/andre/work/RadeonProRenderSDK/./tutorials/Bin/01_camera_setup64 | |
Reason: image not found | |
zsh: abort ./tutorials/Bin/01_camera_setup64 | |
andre@boop RadeonProRenderSDK % otool -L tutorials/Bin/01_camera_setup64 |
This file contains hidden or 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/zsh | |
# an image that looks like the background | |
WHITE=/Users/andre/Desktop/white.png | |
# output directory | |
OUT=/Users/andre/Pictures/mugshots_no_bg | |
# maybe run us like this: | |
# find ... -name '*.jpg' | xargs -n 100 -P 4 -J % ~/bin/bg_remove.sh % |
This file contains hidden or 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/zsh | |
IMAGE_DIR=$1 | |
INK="/Applications/Inkscape.app/Contents/MacOS/inkscape" | |
SCRIPT="inkscript" | |
COUNT=0 | |
# If gdate is available (brew install coreutils), we can show precise timing info | |
type -a gdate &> /dev/null && HAS_GDATE=1 |
This file contains hidden or 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/zsh | |
D=$(date "+%Y-%m-%d") | |
#D=$(date "+%s") | |
ifstat -t -n -i en0 \ | |
| sed -l '1d;2d' \ | |
| while read -A IFSTAT | |
do | |
echo -n "{" | |
echo -n "\"Time\": \"${D} ${IFSTAT[1]}\", " | |
#echo -n "\"Time\": \"${IFSTAT[1]}\", " |
This file contains hidden or 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/env python -u | |
from colorhash import ColorHash | |
from pprint import pprint as pp | |
from pcapng import FileScanner | |
import asyncio | |
import sys | |
import re | |
cmd = "tcpdump --immediate-mode -l -g -k -n -i pktap,en0 ip or udp" |
This file contains hidden or 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
query ($owner: String!, $name: String!, $gazers: Int, $items: Int) { | |
repository(owner: $owner, name: $name) { | |
name | |
description | |
resourcePath | |
id | |
stargazers(last: $gazers, orderBy: {field: STARRED_AT, direction: DESC}) { | |
edges { | |
starredAt | |
node { |
This file contains hidden or 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/env/ python | |
import requests | |
import fileinput | |
import sys | |
from humanfriendly import format_size | |
f = open("/Users/andre/Desktop/urls.txt", "r") | |
s = requests.session() |
This file contains hidden or 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>html5 video / audio playbackRate sandbox</title> | |
<style> | |
body { | |
height: 99%; | |
} | |
div { |
This file contains hidden or 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 | |
set -x | |
set -e | |
# This script intends to compliment an automated LetEncrypt setup on | |
# OS X Server. After updating certs, the new files should be imported into | |
# Keychain, which Server will notice. Amusingly, we need to encrypt the | |
# certs for this to work, so this script does that (hard-coded password!) |