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
| 2015-07-30 18:18:27 +0200 | |
| ./configure | |
| --prefix=/usr/local/Cellar/php54/5.4.43_2 | |
| --localstatedir=/usr/local/var | |
| --sysconfdir=/usr/local/etc/php/5.4 | |
| --with-config-file-path=/usr/local/etc/php/5.4 | |
| --with-config-file-scan-dir=/usr/local/etc/php/5.4/conf.d | |
| --mandir=/usr/local/Cellar/php54/5.4.43_2/share/man | |
| --enable-bcmath |
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
| <?php | |
| // Server file | |
| class PushNotifications { | |
| // (Android)API access key from Google API's Console. | |
| private static $API_ACCESS_KEY = 'AIzaSyDG3fYAj1uW7VB-wejaMJyJXiO5JagAsYI'; | |
| // (iOS) Private key's passphrase. | |
| private static $passphrase = 'joashp'; | |
| // (Windows Phone 8) The name of our push channel. | |
| private static $channelName = "joashp"; |
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
| <subsystem xmlns="urn:jboss:domain:undertow:1.1"> | |
| <buffer-cache name="default"/> | |
| <server name="default-server"> | |
| <http-listener name="default" socket-binding="http" always-set-keep-alive="false"/> | |
| <https-listener name="default-s" socket-binding="https" security-realm="UndertowRealm" always-set-keep-alive="false"/> | |
| <host name="default-host" alias="localhost"> | |
| <location name="/" handler="welcome-content"/> | |
| <access-log prefix="access"/> | |
| <filter-ref name="connection-close"/> | |
| <filter-ref name="server-header"/> |
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/sh | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # Set the colours you can use | |
| black='\033[0;30m' | |
| white='\033[0;37m' | |
| red='\033[0;31m' |
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 bash | |
| echo "Cleaning up..." | |
| rm -rf bin/ src/ | |
| echo "Copying sources..." | |
| mkdir src/ | |
| find SSLKillSwitch -type f \( -name "*.h" -o -name "*.m" -o -name "*.c" \) -exec cp {} src/ \; | |
| BIN_NAME="SSLKillSwitch2.dylib" |
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 | |
| #title :wildfly-install.sh | |
| #description :The script to install Wildfly 10.x | |
| #more :http://sukharevd.net/wildfly-8-installation.html | |
| #author :Dmitriy Sukharev | |
| #date :2015-10-24T17:14-0700 | |
| #usage :/bin/bash wildfly-install.sh | |
| #tested-version :10.0.0.CR3 | |
| #tested-distros :Debian 7,8; Ubuntu 15.10; CentOS 7; Fedora 22 |
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/sh | |
| # | |
| # Traffic logging tool for OpenWRT-based routers | |
| # Original code at https://code.google.com/p/wrtbwmon/ | |
| # For usage with OpenWRT, take a look at http://heyeshuang.tk/?p=268 | |
| # Created by Emmanuel Brucy (e.brucy AT qut.edu.au) | |
| # Modified by HeYSH (yeshuanghe AT gmail.com) | |
| # | |
| # Based on work from Fredrik Erlandsson (erlis AT linux.nu) | |
| # Based on traff_graph script by twist - http://wiki.openwrt.org/RrdTrafficWatch |
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
| import Foundation | |
| extension String | |
| { | |
| var length: Int { | |
| get { | |
| return countElements(self) | |
| } | |
| } | |
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
| # Documentation: https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Formula-Cookbook.md | |
| # /usr/local/Library/Contributions/example-formula.rb | |
| # | |
| # PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST! | |
| # | |
| # FOR LOCAL INSTALLATION COPY IT IN /usr/local/Library/Formula/ | |
| # | |
| class J2objc < Formula | |
| homepage "http://j2objc.org/" |
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
| #include <objc/runtime.h> | |
| #include <objc/message.h> | |
| #include <CoreFoundation/CoreFoundation.h> | |
| /* ... */ | |
| /** | |
| * Return a character string that holds the current version | |
| * of the operating system which is equivalent to: |