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
<html> | |
<head> | |
<script> | |
window.onload = function() {alert(1)} | |
window.onload = function() {alert(2)} | |
window.onload = function() {alert(3)} | |
function load() { | |
alert(4); | |
} |
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
Build complete. | |
Don't forget to run 'make test'. | |
==> make install | |
make install | |
Installing PHP SAPI module: apache2handler | |
/usr/share/httpd/build/instdso.sh SH_LIBTOOL='/usr/share/apr-1/build-1/libtool' libs/libphp5.so /usr/local/Cellar/php54/5.4.6/libexec/apache2 | |
/usr/share/apr-1/build-1/libtool --mode=install cp libs/libphp5.so /usr/local/Cellar/php54/5.4.6/libexec/apache2/ | |
cp libs/libphp5.so /usr/local/Cellar/php54/5.4.6/libexec/apache2/libphp5.so | |
Warning! dlname not found in /usr/local/Cellar/php54/5.4.6/libexec/apache2/libphp5.so. |
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
var parser = require('blindparser'); | |
var options = {}; | |
parser.parseURL('http://feeds.feedburner.com/TechCrunch', options,function(err,out){ | |
console.log(err); | |
console.log(out); | |
}); | |
/* Output of 2 console.log messages above */ |
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
{ | |
"query": { | |
"bool": { | |
"must": [ | |
{ | |
"match": { | |
"story_title": { | |
"query": "sull", | |
"type": "phrase_prefix" | |
} |
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
config/autorun.sh | |
configure.ac:43: installing 'config/compile' | |
configure.ac:40: installing 'config/install-sh' | |
configure.ac:40: installing 'config/missing' | |
Makefile.am:29: error: Libtool library used but 'LIBTOOL' is undefined | |
Makefile.am:29: The usual way to define 'LIBTOOL' is to add 'LT_INIT' | |
Makefile.am:29: to 'configure.ac' and run 'aclocal' and 'autoconf' again. | |
Makefile.am:29: If 'LT_INIT' is in 'configure.ac', make sure | |
Makefile.am:29: its definition is in aclocal's search path. | |
Makefile.am: installing 'config/depcomp' |
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
npm install | |
npm http GET https://registry.npmjs.org/couchbase | |
npm http 304 https://registry.npmjs.org/couchbase | |
npm http GET https://registry.npmjs.org/bindings | |
npm http GET https://registry.npmjs.org/request | |
npm http 304 https://registry.npmjs.org/bindings | |
npm http 304 https://registry.npmjs.org/request | |
> [email protected] install /Users/jnelson/wkspace/mysql_vs_couchbase/node_modules/couchbase | |
> node-gyp rebuild |
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
npm install | |
npm http GET https://registry.npmjs.org/couchbase | |
npm http 304 https://registry.npmjs.org/couchbase | |
npm http GET https://registry.npmjs.org/request | |
npm http GET https://registry.npmjs.org/bindings | |
npm http 304 https://registry.npmjs.org/request | |
npm http 304 https://registry.npmjs.org/bindings | |
> [email protected] install /Users/jnelson/wkspace/mysql_vs_couchbase/node_modules/couchbase | |
> node-gyp rebuild |
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 main | |
import ( | |
"fmt" | |
"net/http" | |
"time" | |
) | |
func main() { | |
t0 := time.Now() |
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
# -*-Shell-script-*- | |
# | |
# functions This file contains functions to be used by most or all | |
# shell scripts in the /etc/init.d directory. | |
# | |
TEXTDOMAIN=initscripts | |
# Make sure umask is sane | |
umask 022 |
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/sh | |
# | |
# /etc/rc.d/init.d/logstash | |
# | |
# Starts Logstash as a daemon | |
# | |
# chkconfig: 2345 20 80 | |
# description: Starts Logstash as a daemon | |
# pidfile: /var/run/logstash-agent.pid |
OlderNewer