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
package net.stoerr.dirdupfinder | |
import java.nio.ByteBuffer | |
import java.nio.file.{FileSystems, Files, Path, StandardOpenOption} | |
import java.security.MessageDigest | |
import sun.misc.BASE64Encoder | |
import scala.collection.JavaConversions._ |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:pom="http://maven.apache.org/POM/4.0.0"> | |
<xsl:output method="text" version="1.0" encoding="UTF-8" indent="no"/> | |
<!-- | |
Generiert Fragment von dotty-File für die Pom-Abhängigkeiten. | |
Anwendung: | |
( | |
echo "digraph PomDependencies {" | |
find . -name pom.xml | xargs xsltproc pom2dotty.xslt | sort -u | |
echo "}" |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions"> | |
<xsl:output method="text" /> | |
<xsl:template match="/" > | |
<xsl:text>digraph tilesdefs { | |
ranksep="2"; | |
</xsl:text> | |
<xsl:for-each select="/tiles-definitions/definition[@extends]"> |
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
rule(0+X,X). | |
rule(X+0,X). | |
rule(1*X,X). | |
rule(X*1,X). | |
rule(1*X,X). | |
rule(0*_,0). | |
rule(_*0,0). | |
rule(sum(_,0),0). | |
rule((X+Y)*Z, (X*Z)+(Y*Z)). |
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.zip.ZipFile | |
println("Run in launchpad") | |
File topfile = new File("sling").canonicalFile | |
def pom = new FileWriter("pom.xml") | |
pom.append("""<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
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 | |
# If you use branch names with JIRA ticket numbers in them, e.g. feature/ABC-4324-do-something, | |
# this includes automatically the ticket number (ABC-4324) at the start of the the commit message. | |
# This way, it's later easy to see which change was done for which ticket, without any manual effort. | |
# You need to copy or link this file into .git/hooks/prepare-commit-msg | |
# You can customize which branches should be skipped when prepending commit message. | |
if [ -z "$BRANCHES_TO_SKIP" ]; then | |
BRANCHES_TO_SKIP=(master develop test) | |
fi |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" | |
pageEncoding="ISO-8859-1"%> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<%-- | |
This JSP lists all threads with stati as configured in a checklist, optionally whose names match a specified regex. | |
If two threads have the same stacktrace, they are shown together and the stacktrace is printed only once. | |
--%> | |
<%@page import="java.util.*"%> | |
<%@page import="javax.servlet.*"%> | |
<%@page import="java.io.*"%> |
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 javax.annotation.Nonnull; | |
import java.util.Objects; | |
import java.util.concurrent.locks.Lock; | |
/** | |
* Allows using a {@link java.util.concurrent.locks.Lock} with a try with resources, e.g.: | |
* <code> try (LockAsAutoCloseable locked = LockAsAutoCloseable.lock(lock)) { ... } </code> . | |
*/ | |
@SuppressWarnings("LockAcquiredButNotSafelyReleased") | |
public class LockAsAutoCloseable implements AutoCloseable { |
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
package net.stoerr.testing; | |
import java.io.UnsupportedEncodingException; | |
import java.util.ArrayList; | |
import java.util.List; | |
/** | |
* Returns a couple of teststrings to detect character escaping problems. This file encodes all chars numerically to | |
* make sure we are independent of the encoding of this file. Caution: this currently covers only relatively common | |
* stuff - it does not yet lead into the deeper realms of UTF like substitutes, right to left, Kanji, characters |
OlderNewer