Skip to content

Instantly share code, notes, and snippets.

View dol's full-sized avatar

Dominic dol

View GitHub Profile
@dol
dol / keybase.md
Created May 5, 2014 21:50
keybase.md

Keybase proof

I hereby claim:

  • I am dol on github.
  • I am dol (https://keybase.io/dol) on keybase.
  • I have a public key whose fingerprint is DABD 5E2C A413 8B4F B514 021B 539A DA06 ADEE FD14

To claim this, I am signing this object:

@dol
dol / 01_xpath_test_suite.txt
Created August 5, 2014 11:13
XPath test suite
/
//@*
//*
/..
.
./*
..
../..
''
'+'
@dol
dol / bug.php
Last active August 29, 2015 14:06
<?php
$content = <<<'EOF'
Line 1
Line 2
Line 3
Line 4
EOF;
$tmpCsvFile = new SplTempFileObject();
@dol
dol / cd_a_file.sh
Last active August 29, 2015 14:06
cd a file fix
# Never cd a file and get the warning it's no a directory
# Important to unset the variable for ZSH prompt
function cd() {
FORWARD_ARGS=()
for ARG in "$@"
do
case "$ARG" in
-L) FORWARD_ARGS+=("-L")
;;
-P) FORWARD_ARGS+=("-P")
#!/usr/bin/make -f
#export DH_VERBOSE=1
CFLAGS ?= $(shell dpkg-buildflags --get CFLAGS)
LDFLAGS ?= $(shell dpkg-buildflags --get LDFLAGS)
WITH_SPDY := $(shell printf "Source: nginx\nBuild-Depends: libssl-dev (>= 1.0.1)\n" | \
dpkg-checkbuilddeps - >/dev/null 2>&1 && \
echo "--with-http_spdy_module")
%:
@dol
dol / curl_ipv6.php
Created November 11, 2014 16:25
Curl + AWS IPv6 lookup test
<?php
# Requires PHP 5.5
$ch = curl_init("https://sqs.eu-central-1.amazonaws.com/");
curl_setopt($ch, CURLOPT_HEADER, 0);
#curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
echo curl_exec($ch);
if($errno = curl_errno($ch)) {
@dol
dol / gist:820188
Created February 10, 2011 09:18
Generate MySQL 4.1 compartible password hash without PASSWORD() function
SELECT CONCAT('*', UPPER(CONVERT(SHA1(UNHEX(SHA1('yourPassword'))) USING latin1)));
@dol
dol / ZF-11726.patch
Created September 9, 2011 10:33
ZF-11726 patch
Index: tests/Zend/Http/CookieJarTest.php
===================================================================
--- tests/Zend/Http/CookieJarTest.php (revision 24451)
+++ tests/Zend/Http/CookieJarTest.php (working copy)
@@ -91,7 +91,7 @@
$this->assertEquals(3, count($jar->getAllCookies()));
- $cookie_str = 'foo=bar;BOFH=Feature+was+not+beta+tested;time=1164234700;';
+ $cookie_str = 'foo=bar; BOFH=Feature+was+not+beta+tested; time=1164234700';
@dol
dol / customLoginForm.html
Created April 20, 2012 15:29
cyon Webmail Login Widget
<form id="cyon-wm-login_form" action="https://webmail.cyon.ch/" method="POST">
<input type="text" value="" id="cyon-wm-username" name="username">
<input type="password" value="" id="cyon-wm-password" name="password">
<input type="hidden" value="" id="cyon-wm-domain" name="domain">
<input type="submit" value="Ins Webmail einloggen" id="cyon-wm-submitbt" name="submitbt">
</form>
<div id="cyon-wm-login-message"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="https://webmail.cyon.ch/plugins/cyon_mod/static/easyXDM.min.js"></script>
<script type="text/javascript" src="https://webmail.cyon.ch/plugins/cyon_mod/static/loginForm.js"></script>
@dol
dol / README.rst
Last active December 18, 2015 11:29
Preinstall puppet via puppetlabs repo

Custom puppet version preinstall for vagrant

Add the following line to you 'Vagrantfile':

config.vm.provision :shell do |s|
  s.path = "preinstall.sh"
  s.args = "3.1.1-1puppetlabs1"