Skip to content

Instantly share code, notes, and snippets.

View AgileSpirit's full-sized avatar

Jérémy Buget AgileSpirit

View GitHub Profile
@AgileSpirit
AgileSpirit / DateSelector.html
Created May 25, 2013 11:01
A Wicket DateSelector FormComponent based on 3 DropDownChoice components
<!DOCTYPE html>
<html xmlns:wicket="http://wicket.apache.org">
<body>
<wicket:panel>
<select class="fieldInput" wicket:id="day" ></select>
<select class="fieldInput" wicket:id="month" ></select>
<select class="fieldInput" wicket:id="year" ></select>
</wicket:panel>
@AgileSpirit
AgileSpirit / deploy.sh
Last active December 16, 2015 17:19
Script Unix de déploiement automatisé d'application Web Java vers Tomcat
#!/bin/sh
clear
echo "/********************************************/"
echo "/* QUESTIONNAIRE-SANTE NEW VERSION DEPLOYER */"
echo "/********************************************/"
#----------------------------------------------------------------------------
@AgileSpirit
AgileSpirit / Grizzly4Heroku.java
Last active December 14, 2015 16:48
Launch an embedded Grizzly Server for Heroku cloud provider AND local environment
package com.agile.spirit.openapi;
import java.io.IOException;
import java.net.URI;
import java.util.List;
import javax.ws.rs.core.UriBuilder;
import org.glassfish.grizzly.http.server.HttpServer;