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
h1. Installation of OIM PS3 | |
This is the task witch handles installation of the PS3 patch of OIM. The installation should be carried out in the following manner: | |
# Install to local development machine | |
# Install to test | |
# Install to stage | |
h1. Helpful links |
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
@ECHO OFF | |
REM | |
REM This script requires the following system variable to be registered: | |
REM key: DIFI_CONFIG_HOME | |
REM value: C:\path\to\difi\configuration\vefa-validator-conf-master | |
REM | |
REM @author vegaasen | |
REM @version 0.1 | |
REM @since 31.03.2015 |
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/sh | |
M2_HOST=mirrors.ibiblio.org; | |
M2_HOST_URI=maven2; | |
M2_LOCAL_LOCATION=/tmp/maven2; | |
echo "starting to syncronize all of the bits and pieces of $M2_HOST/$M2_HOST_URI. Everything will by synced to $M2_LOCAL_LOCATION"; | |
rsync -v -t -l -r $M2_HOST::$M2_HOST_URI $M2_LOCAL_LOCATION; |
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"?> | |
<project name="validate-cli" default="install"> | |
<property file="../parent-build.properties"/> | |
<property file="build.properties"/> | |
<property name="src.dir" location="src/main/java"/> | |
<property name="build.dir" location="target"/> | |
<property name="build.lib.dir" location="${build.dir}/lib"/> |
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 | |
# | |
# @description Simple script which just checks the current state of a mount and then checks the volume for % used. If this % used is > treshold, then it will send an email. | |
# @author vegaasen | |
# @since 06.01.2015 | |
# @version 0.1-SNAPSHOT | |
# | |
THRESHOLD=95; | |
RECIPIENTS="[email protected]"; |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Net; | |
using System.IO; | |
using System.Security.Authentication; | |
using System.Net.Sockets; | |
using System.Net.Security; | |
using System.Security.Cryptography.X509Certificates; |
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
@Test | |
public void misc() { | |
final SimpleDocumentBuilderHolder documentBuilderHolder = new SimpleDocumentBuilderHolder(); | |
ExecutorService exec = Executors.newFixedThreadPool(10); | |
for (int i = 0; i < ROUNDS; i++) { | |
exec.submit(new Runnable() { | |
public void run() { | |
try { | |
final DocumentBuilder builder = documentBuilderHolder.allocateDocumentBuilder(); |