Skip to content

Instantly share code, notes, and snippets.

View aVolpe's full-sized avatar
:electron:
Hacking

Arturo Volpe aVolpe

:electron:
Hacking
View GitHub Profile
@aVolpe
aVolpe / AuditCallback.java
Last active August 25, 2017 06:40
Audit with flyway and postgresql
package test;
import java.sql.Connection;
import org.flywaydb.core.api.MigrationInfo;
import org.flywaydb.core.api.callback.FlywayCallback;
public class AuditCallback implements FlywayCallback {
@Override
@aVolpe
aVolpe / Q27758304.java
Created January 4, 2015 07:41
Answers to the Question Q27758304 of StackOverflow
package py.com.volpe.stack;
import java.io.File;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Unmarshaller;
import javax.xml.bind.annotation.XmlAccessType;
#!bin/bash
ps -eF | grep jboss | grep server | tr -s " " | cut -d " " -f2 | xargs kill -9
su - jboss -c 'nohup sh /opt/jboss/bin/standalone.sh -b 0.0.0.0 -bmanagement 0.0.0.0' &
@aVolpe
aVolpe / Vibration.cs
Created October 16, 2014 02:45
Vibration for Unity3d with Android native Call, with fallback to Handlheld.Vibrate()
using UnityEngine;
using System.Collections;
public static class Vibration
{
#if UNITY_ANDROID && !UNITY_EDITOR
public static AndroidJavaClass unityPlayer = new AndroidJavaClass("com.unity3d.player.UnityPlayer");
public static AndroidJavaObject currentActivity = unityPlayer.GetStatic<AndroidJavaObject>("currentActivity");
public static AndroidJavaObject vibrator = currentActivity.Call<AndroidJavaObject>("getSystemService", "vibrator");
@aVolpe
aVolpe / datasource.xml
Created September 12, 2014 19:31
Jboss sample informix datasource
<datasource jta="true" jndi-name="java:jboss/datasources/CopacoBillingDS" pool-name="CopacoBillingDS" enabled="true" use-ccm="true">
<connection-url>jdbc:informix-sqli://10.13.200.41:9088/copaco_prueba01:informixserver=copacodb</connection-url>
<driver>informix-jdbc</driver>
<security>
<user-name>USER</user-name>
<password>PASS</password>
</security>
</datasource>
@aVolpe
aVolpe / Test25504340.java
Last active August 29, 2015 14:05
StackOverflow question #25504340
import java.io.IOException;
import java.util.HashSet;
import java.util.Properties;
import java.util.Set;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.OneToMany;
@aVolpe
aVolpe / TestTest.java
Last active August 29, 2015 14:01
23910328 Test
package py.una.volpe.test;
import static org.hamcrest.CoreMatchers.hasItem;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertThat;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Properties;
@aVolpe
aVolpe / Builder.java
Created April 22, 2014 13:53
LdapPassword Builder
String ldapPasswordEncoder(String string) {
Charset cs = Charset.forName(CharEncoding.UTF_8);
StringBuilder builder = new StringBuilder("{MD5}");
builder.append(new String(Base64.encode(DigestUtils.md5Digest(string
.getBytes(cs)))));
return builder.toString();
}
@aVolpe
aVolpe / CameraGestures.cs
Created March 31, 2014 20:46
A simple script that manipulates the camera through TouchScript to move it around a object. (Can zoom and rotate too).
using System;
using TouchScript.Events;
using TouchScript.Gestures;
using TouchScript.Gestures.Simple;
using UnityEngine;
public class CameraGestures : MonoBehaviour {
public float Speed = 10f;
public float PanSpeed = 15f;
@aVolpe
aVolpe / JACOCO config
Last active January 3, 2016 12:09
Configuración del plugin JACOCO para que genere los resultados de coverage en `target/jacoco.exec`
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>unit-test</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>