- Show conflicted files
$ svn stat | grep -E "^C"
Use PuTTY as a local terminal.
watch
: install procps
!!! [Selenium | http://seleniumhq.org]
!! [Selenium Grid | https://code.google.com/p/selenium/wiki/Grid2]
"Selenium Grid transparently distribute your tests on multiple machines so that you can run your tests in parallel, cutting down the time required for running in-browser test suites."
Guide from Vaadin: [https://vaadin.com/book/-/page/testbench.grid.html]
(function(context){ | |
// don't call until domready | |
var getDefaultElement = (function () { | |
var defaultElement; | |
return function () { | |
if (typeof defaultElement == 'undefined') { | |
defaultElement = document.createElement('div'); | |
document.body.appendChild(defaultElement); | |
} | |
return defaultElement; |
(tested with Maven 3.0.4, POM 4.0.0)
mvn archetype:generate -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-quickstart # -DarchetypeVersion=5-SNAPSHOT
#!/bin/bash | |
# Copies local files and directories to root path. | |
# Run this from the directory of the distr | |
_SRCDIR="./" | |
_SRCDIR_SED="\\./" | |
_INSTALLDIR="/" | |
_INSTALLDIR_SED="\/" |
<?php | |
function get_ie_classes($ie) { | |
$classes = array('ie'); | |
if ($ie >= 7 && $ie <= 9) { | |
$classes[] = 'ie-' . $ie; | |
} | |
for ($i = 6; $i < $ie; ++$i) { | |
$classes[] = 'ie-gt-' . $i; | |
$classes[] = 'ie-gte-' . ($i + 1); | |
} |
# set default directory | |
screen -X chdir $DIR |
# set default path | |
tmux set-option default-path "$PWD" |