Skip to content

Instantly share code, notes, and snippets.

/**
* prints all the information in the rows from a SesultSet usefull for
* testing a debugging
*
* @param rset
*/
public static void dumpResultSet(ResultSet rSet) {
try {
// rSet.beforeFirst();
while (rSet.next()) {
Γεια σου Απρίλη γεια σου Μάρτη
και πικρή Σαρακοστή
Βάζω πλώρη και κατάρτι
και γυρεύω ένα νησί
που δε βρίσκεται στο χάρτη
Το κρατάνε στον αέρα
ioannis-kolovos:hello ioannis$ heroku keys
=== 2 keys for yannis.kolovos@gmail.com
ssh-rsa AAAAB3NzaC...dXgcLhNw== yannis.kolovos@gmail.com
ssh-rsa AAAAB3NzaC...eI0zlbmQ== yannis.kolovos@gmail.com
ioannis-kolovos:hello ioannis$ git status
# On branch master
# Untracked files:
# (use "git add ..." to include in what will be committed)
#
export ZSH=$HOME/.oh-my-zsh
export ZSH_THEME="bruce"
plugins=(git osx dribbble)
source $ZSH/oh-my-zsh.sh
export DISABLE_AUTO_UPDATE="true"
################################################################################
# PATH Setup
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>BigPipe example</title>
<script type="text/javascript" src="prototype.js"></script>
<script type="text/javascript" src="prototypepatch.js"></script>
<script type="text/javascript" src="bigpipe.js"></script>
</head>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>BigPipe example</title>
<script type="text/javascript" src="prototype.js"></script>
<script type="text/javascript" src="prototypepatch.js"></script>
<script type="text/javascript" src="bigpipe.js"></script>
</head>
/*
* $Id: prototypepatch.js,v 1.20 2010/09/13 12:09:58 antti-pe Exp $
*
* Copyright � 2008 - 2009 Sulake Dynamoid Oy http://www.dynamoid.com/
*
* Patches for prototype 1.6.0.2
*/
Prototype.Browser.IE6 = Prototype.Browser.IE && parseInt(navigator.userAgent.substring(navigator.userAgent.indexOf("MSIE")+5)) == 6;
Prototype.Browser.IE7 = Prototype.Browser.IE && parseInt(navigator.userAgent.substring(navigator.userAgent.indexOf("MSIE")+5)) == 7;
/***** BIGPIPE *****/
/**
* NOTE: THIS FILE IS PART OF THE startup.js COMPILATION. REMEMBER TO UPDATE THE COMPILATION AFTER MODIFICATIONS!
*
* This our BigPipe implementation which is modelled after the Facebook BigPipe, which is described at:
* http://www.facebook.com/notes/facebook-engineering/bigpipe-pipelining-web-pages-for-high-performance/389414033919
*/
var globalEval = function globalEval(src) {
$('external_js').innerHTML = 'Ok';
// Important, notice BigPipe that this file has been loaded
if (BigPipe != undefined) { BigPipe.fileLoaded("test.js"); }
function test2(id, message) {
$(id).innerHTML = message;
}
// Important, notice BigPipe that this file has been loaded
if (BigPipe != undefined) { BigPipe.fileLoaded("test2.js"); }