View query.json
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": { | |
"should": [ | |
{ | |
"simple_query_string": { | |
"fields": [ | |
"name^3", | |
"description", | |
"service_location", |
View float_bug.go
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 ( | |
"database/sql" | |
"fmt" | |
"log" | |
_ "github.com/go-sql-driver/mysql" | |
) |
View gist:48067bc59ac03b52ca6b
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
{ | |
location: { | |
city: "Austin", | |
state: "TX" | |
}, | |
category: { | |
name: "Professional Services", | |
id: 42, | |
"description": "Welcome to Austin, Texas's best directory brought to you by the OwnLocal. Check out businesses like Dime Box Cattle Co...", | |
"images": [ |
View cupid.lua
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
----------------------------------------------------- | |
-- (C) Robert Blancakert 2012 | |
-- Available under the same license as Love | |
----------------------------------------------------- | |
----------------------------------------------------- | |
-- Cupid Configuration | |
----------------------------------------------------- |
View fakeserver.sh
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
BODY="$1" | |
if [ -z "$1" ]; then | |
BODY="OK" | |
fi | |
{ | |
echo -ne "HTTP/1.0 200 OK\r\nContent-Length: $(echo $BODY| wc -c)\r\n\r\n" | |
echo $BODY | |
} | nc -l 8080 -v |
View playtime.py
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
from os import walk | |
from os.path import join | |
from subprocess import check_output | |
SEC_PER_MIN = 60 | |
SEC_PER_HOUR = 60 * SEC_PER_MIN | |
SEC_PER_DAY = 24 * SEC_PER_HOUR | |
def split_time(seconds): |
View datehist.py
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
#!/usr/bin/env python | |
""" | |
Plot histogram from list of dates | |
Usage | |
===== | |
Point to mbox file. | |
Ex.1: plot mailinglist activity:: |
View playndeps.txt
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
/Users/pbonser/.m2/ | |
└── repository | |
├── antlr | |
│ └── antlr | |
│ └── 2.7.7 | |
│ ├── _maven.repositories | |
│ ├── antlr-2.7.7.jar | |
│ ├── antlr-2.7.7.jar.sha1 | |
│ ├── antlr-2.7.7.pom | |
│ └── antlr-2.7.7.pom.sha1 |
View canttouchthis.sh
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
pib@quabee:~$ sudo touch this | |
[sudo] password for pib: | |
pib@quabee:~$ sudo chmod 600 this | |
pib@quabee:~$ touch this | |
touch: cannot touch `this': Permission denied | |
pib@quabee:~$ |
View gist:1320092
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
def inject(self, webview): | |
""" Replace the old QNetworkAccessManager instance with this | |
instance. | |
""" | |
old_manager = webview.page().networkAccessManager() | |
self.setCache(old_manager.cache()) | |
self.setCookieJar(old_manager.cookieJar()) | |
self.setProxy(old_manager.proxy()) | |
self.setProxyFactory(old_manager.proxyFactory()) |
NewerOlder