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
Moved to: https://github.com/bmfurtado/iterm2-cssh |
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
#!/bin/bash | |
# Escenic deploy script | |
# Version: 2.0 | |
if [ -z "$1" ] | |
then | |
echo "Publication not defined." | |
echo "USAGE:$0 <publication-name>" | |
exit |
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
#!/bin/bash | |
echo "Super Mega Hyper Pfam database parser started. Sit back and relax :)" | |
echo "Begin parsing " $1 " file.." | |
#remove old output | |
rm -rf parser_output | |
mkdir parser_output | |
#parse command line arguments |
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
import java.util.regex.Pattern; | |
import javax.servlet.http.HttpServletRequest; | |
import javax.servlet.http.HttpServletRequestWrapper; | |
public class XSSRequestWrapper extends HttpServletRequestWrapper { | |
public XSSRequestWrapper(HttpServletRequest servletRequest) { | |
super(servletRequest); | |
} | |
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> | |
<title>Jayrock + JQuery</title> | |
<script type="text/javascript" language="javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.2.6.min.js"></script> | |
<script type="text/javascript" language="javascript" src="http://www.raboof.com/projects/jayrock/demo.ashx?proxy"></script> | |
<script type="text/javascript" language="javascript"> | |
var channels = { | |
'jquery.get': new JQueryChannel({ cache: true }), | |
'jquery.get-nocache': new JQueryChannel({ cache: false }), |