View Struct.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 | |
class Struct | |
{ | |
/** | |
* Define a new struct object, a blueprint object with only empty properties. | |
*/ | |
public static function factory() | |
{ | |
$struct = new self; | |
foreach (func_get_args() as $value) { |
View example-mod-wsgi.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
def application(environ, start_response): | |
import sys | |
path = 'YOUR_WWW_ROOT_DIRECTORY' | |
if path not in sys.path: | |
sys.path.append(path) | |
from pyinfo import pyinfo | |
output = pyinfo() | |
start_response('200 OK', [('Content-type', 'text/html')]) | |
return [output] |
View gist:951833
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 | |
$time1 = explode(' ', microtime()); | |
$time1 = $time1[1] . substr($time1[0], 1, -2); | |
// your code | |
$time2 = explode(' ', microtime()); | |
$time2 = $time2[1] . substr($time2[0], 1, -2); | |
View gist:951844
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
Public Sub AllInternalPasswords() | |
Const DBLSPACE As String = vbNewLine & vbNewLine | |
Const AUTHORS As String = DBLSPACE & vbNewLine & _ | |
"Adapted from Bob McCormick base code by" & _ | |
"Norman Harker and JE McGimpsey" | |
Const HEADER As String = "AllInternalPasswords User Message" | |
Const VERSION As String = DBLSPACE & "Version 1.1.1 2003-Apr-04" | |
Const REPBACK As String = DBLSPACE & "Please report failure " & _ | |
"to the microsoft.public.excel.programming newsgroup." | |
Const ALLCLEAR As String = DBLSPACE & "The workbook should " & _ |
View gist:951847
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 | |
/** | |
* Case in-sensitive array_search() with partial matches | |
* | |
* @param string $needle The string to search for. | |
* @param array $haystack The array to search in. | |
* | |
* @author Bran van der Meer <branmovic@gmail.com> | |
* @since 29-01-2010 | |
*/ |
View gist:951858
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 | |
/** | |
* Split a array into semi-equal sized chunks. | |
* A so-called 'columnizer' | |
* | |
* @param array $array The array to split | |
* @param array $numberOfChunks The number of chunks | |
* @param bool $vertical Whether to order vertically or horizonally | |
* | |
* @return array Array with $numberOfColumns nodes with items of $array |
View changepassword.bat
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
@echo off | |
@echo This batchfile changes your password 30 times into a temporary password, and finally into your given password. | |
@echo This way, you can use your 'old' password, when you are forced to change it ;) | |
SET /P user=username: | |
SET /P pwd=password: | |
echo username: %user% | |
net user %user% C6us4deSAf /domain |
View mixin-before-after.scss
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
@mixin before-after { | |
@if $old-ie { | |
&:before, &:after { | |
@content; | |
} | |
} @else { | |
&::before, &::after { | |
@content; | |
} | |
} |
View server.js
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 fs = require('fs'), | |
exec = require('child_process').exec, | |
express = require('express'), | |
app = express(); | |
app.get('/static/img/*.svg.*.png', function(req, res) { | |
var pngFile = 'src' + req.url, | |
svgFile = pngFile.substring(0, pngFile.indexOf('.svg') + 4); | |
if (!fs.existsSync(svgFile)) { | |
return res.render('404', { |
View call-apply-bind-proxy.js
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 fn = function(arg1, arg2) { | |
var str = '<p>aap ' + this.noot + ' ' + arg1 + ' ' + arg2 + '</p>'; | |
document.body.innerHTML += str; | |
}; | |
var context = { | |
'noot': 'noot' | |
}; | |
var args = ['mies', 'wim']; | |
// Calls a function with a given 'this' value and arguments provided individually. |
OlderNewer