This file contains hidden or 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
| #!/usr/bin/env bash | |
| # | |
| # cleanup-branches.sh | |
| # | |
| # Script de nettoyage des branches Git locales et des worktrees : | |
| # - Supprime les branches locales mergées | |
| # - Supprime les branches locales obsolètes (optionnel) | |
| # - Nettoie les worktrees Git | |
| # - Nettoie les références distantes obsolètes (optionnel) | |
| # |
This file contains hidden or 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 com.kdstudio.snippets.soap.client; | |
| import java.io.ByteArrayInputStream; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import javax.xml.parsers.DocumentBuilderFactory; | |
| import javax.xml.parsers.ParserConfigurationException; | |
| import javax.xml.soap.MessageFactory; | |
| import javax.xml.soap.MimeHeaders; |
This file contains hidden or 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 com.kdstudio.snippets.connector.ssh; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.OutputStream; | |
| import java.io.PrintStream; |
This file contains hidden or 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 com.kdstudio.snippets.tips.apache; | |
| import org.apache.commons.lang3.builder.EqualsBuilder; | |
| import org.apache.commons.lang3.builder.HashCodeBuilder; | |
| import org.apache.commons.lang3.builder.ReflectionToStringBuilder; | |
| import org.apache.commons.lang3.builder.ToStringStyle; | |
| /** | |
| * Example of using Commons-lang3 utilities. | |
| * |