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
[12:28am] elliottcable: To describe what I'm doing: To anonymize my identity away from my private “savings” address, from which I'm drawing funds, | |
[12:28am] elliottcable: I'm preforming a “shared send.” This uses a third-party anonymizing service that forwards the money through hundreds of transactions, that “mix” the money with other peoples', making it virtually impossible to trace the transaction back through the public block-chain. | |
[12:28am] elliottcable: (Basically, it's socially-acceptable money laundering. Standard practice.) | |
[12:29am] elliottcable: This is going to trickle money out onto a new address of my own I've generated for this purpose; once it's full, I'll be generating two transactions. One to the address you just signed for me, a private transaction to yourself. You will then be able to draw on that money (publically), or launder it back to your own anonymous savings account, as you please. | |
[12:30am] elliottcable: The second will go to a public gittip.com address, which I'll help you generat |
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 | |
OTP=$1 | |
owner=$2 | |
repo=$3 | |
user=CHANGEME | |
curl -H "X-GitHub-OTP: $OTP" -i -u $user -X POST https://api.github.com/repos/$owner/$repo/hooks --data @irc.json |
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
Paws.js output | |
[devyn] Paws.rs - ~/Projects/ELLIOTTCABLE/Paws.js/Executables/paws.js test-branch.paws | |
Hello, world | |
Hello, world | |
Hello, world | |
Hello, world | |
~ Paws loves you. Bye! 💖 | |
Paws.rs output |
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
# The Rulebook, or Paws-language spec-suite, is written as a series of files like the following. | |
# Each file is a YAML file encoding a set of tests. This file can be consumed as-is (if you have a | |
# YAML parser handy), compiled into a single Paws-source-code test file (see below), or into | |
# a directory of individual plain Paws files for each test. | |
# | |
# (Eventually / ideally, an automated test-runner provided with the Rulebook will take your | |
# implementation's binary, compile these tests to individual files, and then verify that your | |
# implementation-in-progress succeeds on each test, individually.) | |
Combinations against infrastructure: |
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
launchctl load ~/Library/LaunchAgents/com.highcaffeinecontent.wallpaper.plist |
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
// index.js | |
module.exports = require('./Library/app'); | |
// Source/app.js.es6 | |
import from 'foo'; | |
import from 'bar'; | |
// Source/foo.js.es6 | |
console.log('simple'); |
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
*.ip | |
*.log |
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
# -*- coding: utf-8 -*- | |
# Properly align LaTeX images to baseline | |
# | |
# Improved by Johannes Bechberger | |
# | |
# Copyright (c) 2016, Artem Leshchev <[email protected]> | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights |
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
@-moz-document regexp("moz-extension://.*/static/newtab.html") { | |
body { | |
display: none !important; | |
} | |
} |