Skip to content

Instantly share code, notes, and snippets.

@opensource21
opensource21 / TestEL.java
Last active December 16, 2015 15:39 — forked from danielfernandez/TestEL.java
Change the example so that it fails now with Spring 3.2.2.. Now it's a JUnit4-Testcase, so that it's easier to include it into regression testsuite.
package bugs;
import java.util.Date;
import junit.framework.Assert;
import org.junit.Test;
import org.springframework.expression.spel.SpelEvaluationException;
import org.springframework.expression.spel.standard.SpelExpression;
import org.springframework.expression.spel.standard.SpelExpressionParser;
@opensource21
opensource21 / bootstrap-chosen.css
Created September 4, 2012 07:35
Example HTML-Code for Bootstrap-issue
.clearfix {
*zoom: 1;
}
.clearfix:before,
.clearfix:after {
display: table;
content: "";
line-height: 0;
}
.clearfix:after {
package de.ppi.util;
import java.io.UnsupportedEncodingException;
import java.security.SecureRandom;
import java.util.Arrays;
import org.apache.commons.codec.DecoderException;
import org.apache.commons.codec.binary.Base64;
import org.apache.commons.codec.binary.Hex;
import org.apache.commons.codec.digest.DigestUtils;