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
/** | |
* 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()) { |
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
Γεια σου Απρίλη γεια σου Μάρτη | |
και πικρή Σαρακοστή | |
Βάζω πλώρη και κατάρτι | |
και γυρεύω ένα νησί | |
που δε βρίσκεται στο χάρτη | |
Το κρατάνε στον αέρα |
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
ioannis-kolovos:hello ioannis$ heroku keys | |
=== 2 keys for [email protected] | |
ssh-rsa AAAAB3NzaC...dXgcLhNw== [email protected] | |
ssh-rsa AAAAB3NzaC...eI0zlbmQ== [email protected] | |
ioannis-kolovos:hello ioannis$ git status | |
# On branch master | |
# Untracked files: | |
# (use "git add ..." to include in what will be committed) | |
# |
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
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 |
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
<!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> |
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
<!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> |
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
/* | |
* $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; |
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
/***** 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) { |
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
$('external_js').innerHTML = 'Ok'; | |
// Important, notice BigPipe that this file has been loaded | |
if (BigPipe != undefined) { BigPipe.fileLoaded("test.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
function test2(id, message) { | |
$(id).innerHTML = message; | |
} | |
// Important, notice BigPipe that this file has been loaded | |
if (BigPipe != undefined) { BigPipe.fileLoaded("test2.js"); } |
OlderNewer