This file contains hidden or 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 | |
/** | |
** A base module for [text], [text*], [email], and [email*] | |
**/ | |
/* Shortcode handler */ | |
wpcf7_add_shortcode( 'text', 'wpcf7_text_shortcode_handler', true ); | |
wpcf7_add_shortcode( 'text*', 'wpcf7_text_shortcode_handler', true ); | |
wpcf7_add_shortcode( 'email', 'wpcf7_text_shortcode_handler', true ); |
This file contains hidden or 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 | |
LESSFILE=$1 | |
CSSFILE=`basename $1 .less`.css | |
while true; do | |
inotifywait -e modify -e move -e close $LESSFILE && \ | |
date && echo "compiling LESS" && \ | |
lessc $LESSFILE> $CSSFILE | |
done |
This file contains hidden or 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'); | |
var im = require('imagemagick'); | |
// define source of pictures: | |
var source_dir = '/source' | |
// define output of resized pictures: | |
var output_dir = '/output' | |
//define image sizes |
This file contains hidden or 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'); | |
var im = require('imagemagick'); | |
var async = require('async'); | |
var widths = ['270', '590', '910', '1230']; | |
var source_dir = process.cwd()+'/source/'; | |
var output_dir = process.cwd()+'/output/'; | |
fs.readdir(source_dir, function(err, files){ | |
if (err) throw err; |
This file contains hidden or 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 express = require('express'); | |
var passport = require('passport'); | |
var mongoose = require('mongoose'); | |
var mongoStore = require('connect-mongodb'); | |
module.exports = function() { | |
this.set('views', __dirname + '/../../app/views'); | |
this.set('view engine', 'jade'); | |
this.use(express.logger()); |
This file contains hidden or 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 | |
pages_requested=10 | |
characters_per_page=2400 | |
files=( "code.md" "interface_design.md" "project_management.md" ) | |
function countcompare { | |
images=`grep -c '.png' $1` | |
chars=`wc -c $1 | awk '{split($0,array," ")} END{print array[1]}'` | |
chars_with_images=$((chars+images*700)) |
This file contains hidden or 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 | |
# dependencies: | |
# | |
# http://johnmacfarlane.net/pandoc/installing.html | |
# variables: | |
mainfont="Helvetica" | |
sansfont="Helvetica" |
This file contains hidden or 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 | |
# to automatically add a key you can use the following: | |
mac_key_path='/Users/hb/.ssh/foobar' | |
linux_key_path='/home/username/.ssh/foobar' | |
# uncommend below | |
# ssh-add $mac_key_path | |
# ssh-add $linux_key_path |
This file contains hidden or 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 morse = require('morse'); | |
var childProcess = require('child_process'); | |
var async = require('async'); | |
var encoded = morse.encode('SOS'); | |
function onoff (duration, callback) { | |
childProcess.exec('xset led 3',function (error, stdout, stderr){ | |
}); | |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Float</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
</head> | |
<style> | |
.left { | |
width: 300px; | |
float: left; |
OlderNewer