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: configure.ac | |
=================================================================== | |
--- configure.ac (revision 1666) | |
+++ configure.ac (working copy) | |
@@ -227,4 +227,6 @@ | |
src/tests/Makefile | |
freeling.pc]) | |
+AC_PREFIX_DEFAULT(/usr/local/Cellar/freeling) | |
+ |
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
require 'formula' | |
# thanks to ambs for the seed of this formula, https://github.com/ambs | |
class Freeling < Formula | |
url 'http://devel.cpl.upc.edu/freeling/downloads/21' | |
version '3.0' | |
sha1 'd05242e398f60d9720f9bbde2743ea469b1531d1' | |
# head 'http://devel.cpl.upc.edu/freeling/svn/trunk', :using => :svn |
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
require 'formula' | |
class Cgminer < Formula | |
homepage 'https://github.com/ckolivas/cgminer' | |
url 'https://github.com/ckolivas/cgminer/archive/v2.11.0.tar.gz' | |
sha1 '56f7d2bed9b51a3a9b6cafacb09c10de552f5e82' | |
version '2.11' | |
depends_on 'automake' => :build | |
depends_on 'curl' |
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
CREATE TABLE IDN_BASE_TABLE ( | |
PRODUCT_NAME VARCHAR(20), | |
PRIMARY KEY (PRODUCT_NAME) | |
); | |
INSERT INTO IDN_BASE_TABLE values ('WSO2 Identity Server'); | |
CREATE TABLE IDN_OAUTH_CONSUMER_APPS ( | |
CONSUMER_KEY VARCHAR(255), | |
CONSUMER_SECRET VARCHAR(512), |
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 | |
export CKAN_HOME=~/Developer/ckan | |
export SOLR_TMPL_CONF=/usr/local/opt/solr/libexec/example/solr | |
install_prerequisites() { | |
brew install solr | |
brew install postgres | |
brew install python | |
pip install --upgrade setuptools |
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 | |
### ------------------------------- ### | |
### Helper methods for BASH scripts ### | |
### ------------------------------- ### | |
resolve_symlink() { | |
SCRIPT=$1 NEWSCRIPT='' | |
until [ "$SCRIPT" = "$NEWSCRIPT" ]; do | |
if [ "${SCRIPT:0:1}" = '.' ]; then SCRIPT=$PWD/$SCRIPT; fi |
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: includes/install.php | |
=================================================================== | |
--- includes/install.php (revision 28965) | |
+++ includes/install.php (working copy) | |
@@ -6,6 +6,7 @@ | |
*/ | |
error_reporting( E_ALL & ~E_DEPRECATED & ~E_STRICT ); | |
+define( 'WP_INSTALLING', true ); | |
$config_file_path = $argv[1]; |
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
package io.insideout.chat.security; | |
import io.insideout.chat.domain.WordPressUser; | |
import io.insideout.chat.services.WordPressAuthenticationService; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.security.authentication.AuthenticationProvider; | |
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; | |
import org.springframework.security.core.Authentication; |
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
<?php | |
// ======================== | |
// = Plugin settings page = | |
// ======================== | |
class ABC_Settings extends ABC_Core { | |
public function __construct() | |
{ |
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
{ | |
"title": "collectd-rome", | |
"services": { | |
"query": { | |
"list": { | |
"0": { | |
"query": "plugin: \"cpu\" AND plugin_instance: \"0\" AND host:\"rome\"", | |
"alias": "cpu1", | |
"color": "#7EB26D", | |
"id": 0, |
OlderNewer