View password.pl
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
################################################################################ | |
# A simplified "API" to "safely" hash and verify passwords # | |
# # | |
# Author: Günter Grodotzki <guenter@perlhipster.com> # | |
# License: http://www.gnu.org/licenses/gpl-2.0.txt # | |
# Version: 20140425 # | |
################################################################################ | |
use Authen::Passphrase::BlowfishCrypt; |
View unbound.conf
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
server: | |
## STATISTICS | |
# comment-out if you don't use munin | |
verbosity: 0 | |
statistics-interval: 0 | |
statistics-cumulative: no | |
extended-statistics: yes | |
View gist:45d71d622a4aeea06346
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
# cd /usr/src | |
# wget http://download.icu-project.org/files/icu4c/4.8.1.1/icu4c-4_8_1_1-src.tgz | |
# tar xvfz icu4c-4_8_1_1-src.tgz | |
# cd icu/source | |
# ./configure --prefix=/opt/icu | |
# make && make install | |
# cd /usr/src | |
# wget http://pecl.php.net/get/intl-3.0.0.tgz | |
# tar xvfz intl-3.0.0.tgz |
View whmcs-coza-epp.patch
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
diff --git a/modules/registrars/cozaepp/cozaepp.php b/modules/registrars/cozaepp/cozaepp.php | |
index ddb5716..0406c91 100644 | |
--- a/modules/registrars/cozaepp/cozaepp.php | |
+++ b/modules/registrars/cozaepp/cozaepp.php | |
@@ -799,18 +799,35 @@ | |
return $values; | |
} | |
+ $rev = _cozaepp_getRevision(); | |
+ if($rev === 1) { |
View lighttpd-dirlisting-txt-to-html.patch
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
--- a/src/mod_dirlisting.c 2014-08-19 10:13:09.000000000 +0200 | |
+++ b/src/mod_dirlisting.c 2014-08-19 10:13:50.000000000 +0200 | |
@@ -534,14 +534,14 @@ | |
buffer_append_string_len(out, CONST_STR_LEN("</head>\n<body>\n")); | |
} | |
- /* HEADER.txt */ | |
+ /* HEADER.html */ | |
if (p->conf.show_header) { | |
stream s; |
View deploy.php
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 | |
error_reporting(E_ALL); | |
ini_set('display_errors', true); | |
define('SSH_HOST', ''); | |
define('SSH_PORT', 666); | |
define('SSH_USER', ''); | |
define('SSH_PASS', ''); | |
define('REMOTE_PATH', '/var/www/'); |
View Bee.php
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 | |
namespace Weheartwebsites\Spelling; | |
use Exception; | |
class Bee | |
{ | |
protected $broker; |
View lighttpd-1.4.37-mod_ssi-no-etag.patch
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
--- a/src/mod_ssi.c 2015-05-14 11:34:41.000000000 +0200 | |
+++ b/src/mod_ssi.c 2015-09-20 14:15:16.927322005 +0200 | |
@@ -36,7 +36,6 @@ | |
# include <sys/filio.h> | |
#endif | |
-#include "etag.h" | |
#include "version.h" | |
/* The newest modified time of included files for include statement */ |
View checkinstall
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 | |
############################################################################## | |
# $Id: checkinstall,v 1.6.3.1 2010/02/10 14:42:32 izto Exp $ | |
# ######################## | |
# | |
# | |
# CheckInstall v1.6.3 | |
# | |
# Installs a compiled program from the program's source directory using | |
# "make install" or any other command supplied on checkinstall's command |
View katest.php
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 | |
// debug | |
error_reporting(E_ALL); | |
ini_set('display_errors', true); | |
ini_set('html_errors', false); | |
function clrf($num = 1) | |
{ | |
return str_repeat("\r\n", $num); |
OlderNewer