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
/* | |
Animate.css - http://daneden.me/animate | |
LICENSED UNDER THE MIT LICENSE (MIT) | |
Copyright (c) 2012 Dan Eden | |
*/ | |
.animated { | |
-webkit-animation-fill-mode: both; | |
-moz-animation-fill-mode: both; |
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
/** | |
* Small module with a couple helper methods related to VWE functionality | |
* Based on http://blog.kenteken.tv/2011/05/06/code-snippets-formatteren-rdw-kenteken/ | |
* | |
* @author Boye Oomens <[email protected]> | |
* @type {Object} | |
*/ | |
var vwe = { | |
/** |
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 | |
RED="\033[0;31m" | |
YELLOW="\033[33m" | |
REDBG="\033[0;41m" | |
WHITE="\033[1;37m" | |
NC="\033[0m" | |
if [ "$1" = "create" ] || [ "$1" = "add" ]; then | |
# Ask for document root |
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> | |
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script> | |
<meta charset="utf-8"> | |
<title>Perfscroll jQuery plugin</title> | |
</head> | |
<body> | |
<br><br><br><br><br><br><br><br><br><br><br><br><br><br> | |
<br><br><br><br><br><br><br><br><br><br><br><br><br><br> |
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
(function (d) { | |
var f = d.getElementsByTagName('form'), | |
i = f.length; | |
while (i--) { | |
f[i].addEventListener('submit', function () { | |
this.querySelector('[type="submit"]').disabled = 1; | |
}, false); | |
} | |
}(document)); |
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
Creating a new repository: | |
mkdir /path/to/new/dir | |
svnadmin create /path/to/new/dir | |
Starting svnserve: | |
svnserve --daemon --root /path/to/new/repository | |
Importing project into svn repo: | |
$ svn import -m "Wibble initial import" svn://olio/wibble/trunk | |
Creating directory in svn repo: | |
$ svn mkdir -m "Create tags directory" svn://olio/wibble/tags | |
Branching: |
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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Custom statechange event</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
</head> | |
<body style="padding:1em;"> | |
<h1>Custom <code>statechange</code> event</h1> | |
<p> |
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
<?xml version="1.0"?> | |
<config> | |
<modules> | |
<Esites_Editor> | |
<active>true</active> | |
<codePool>community</codePool> | |
</Esites_Editor> | |
</modules> | |
</config> |
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
{ | |
"always_show_minimap_viewport": true, | |
"auto_complete_triggers": | |
[ | |
{ | |
"characters": "<", | |
"selector": "text.html" | |
}, | |
{ | |
"characters": ".", |
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/sh | |
if [ ! $# == 1 ] ; then | |
echo "Usage: $0 mts (project/branch)" | |
exit 1 | |
fi | |
# Root base dir | |
BASEDIR="/Users/username/Development/beinformed" |
OlderNewer