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
use AppleScript version "2.4" -- Yosemite (10.10) or later | |
use scripting additions | |
-- BrowserHereHelper.applescript: | |
-- v2, by <https://github.com/@ELLIOTTCABLE> | |
-- Instructions and current version: | |
-- <https://gist.github.com/ELLIOTTCABLE/b25c6fea41f74ab6e38c5ee8dc744411> | |
-- ---- ---- ---- -- |
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
@-moz-document regexp("moz-extension://.*/static/newtab.html") { | |
body { | |
display: none !important; | |
} | |
} |
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
# -*- 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 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 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 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 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 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 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 |
NewerOlder