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 | |
| from __future__ import print_function | |
| import sys | |
| from string import zfill | |
| from zipfile import ZipFile | |
| def main(path, crc, *args): | |
| with ZipFile(path, 'r') as zip: |
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 ruby | |
| require 'erb' | |
| Cluster = Struct.new(:name, :hosts) | |
| class Host | |
| attr_accessor :fqdn, :port, :user, :name, :proxy | |
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 ruby | |
| require 'erb' | |
| require 'ipaddr' | |
| class HostParseError < StandardError; end | |
| class Host | |
| attr_accessor :fqhn, :port, :user, :name, :proxy |
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"?> | |
| <!DOCTYPE plist PUBLIC | |
| "-//Apple Computer//DTD PLIST 1.0//EN" | |
| "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>se.protomou.unspotlight</string> | |
| <key>Program</key> | |
| <string>/usr/local/sbin/unspotlight</string> |
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/perl | |
| # ************************************************************ | |
| # * gifmaker - A tool for making animated GIFs from video | |
| # files. This works as a wrapper around | |
| # FFmpeg and ImageMagick's convert. | |
| # | |
| # For more details see: | |
| # http://www.leshylabs.com/blog/dev/2013-08-04-Making_Animated_GIFs_from_the_Linux_Command_Line.html | |
| # ************************************************************ |
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 | |
| sed_inplace() { | |
| tmpfile=$(mktemp "$TMPDIR/unfuglify-textmate.XXXXXX") | |
| cp "$2" "$tmpfile" | |
| sed -E "$1" "$tmpfile" > "$2" | |
| rm -f "$tmpfile" | |
| } | |
| if [ $# != 3 ]; then |
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
| [ | |
| { | |
| "StackId": "arn:aws:cloudformation:eu-west-1:123456789123:stack/deis/03787040-3509-11e4-83d2-507bb00bdca0", | |
| "EventId": "e5e454a0-3511-11e4-8f4c-50d500f62a00", | |
| "ResourceStatus": "ROLLBACK_COMPLETE", | |
| "ResourceType": "AWS::CloudFormation::Stack", | |
| "Timestamp": "2014-09-05T15:32:51.428Z", | |
| "StackName": "deis", | |
| "PhysicalResourceId": "arn:aws:cloudformation:eu-west-1:123456789123:stack/deis/03787040-3509-11e4-83d2-507bb00bdca0", | |
| "LogicalResourceId": "deis" |
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
| BackupBucket=backup-bucket | |
| BackupRegion=eu-west-1 | |
| BackupIntervalFull=1W | |
| BackupRetention=1Y | |
| BackupEncryptionPassphrase=MYSECRET | |
| AwsAccessKeyId=MYACCESSKEYID | |
| AwsSecretAccessKey=MYSECRETACCESSKEY |
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 ruby | |
| require 'openssl' | |
| require 'highline/import' | |
| module Builder | |
| class << self | |
| include OpenSSL | |
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
| --- a/disasm.cc 2014-05-29 21:52:40.000000000 +0200 | |
| +++ b/disasm.cc 2014-05-29 21:52:51.000000000 +0200 | |
| @@ -2,6 +2,7 @@ | |
| #include <vector> | |
| #include <string> | |
| #include <cstring> | |
| +#include <cstdlib> | |
| #include <map> | |
| /* This program disassembles an IPS file. */ |