View StateServiceImpl.java
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
@Service("blStateService") | |
public class StateServiceImpl implements StateService { | |
@Resource(name="blStateDao") | |
protected StateDao stateDao; | |
public List<State> findStates() { | |
return stateDao.findStates(); | |
} |
View ActivityStateManagerImpl.java
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
@Service("blActivityStateManager") | |
public class ActivityStateManagerImpl implements ActivityStateManager { | |
private static ActivityStateManager ACTIVITY_STATE_MANAGER; | |
public static ActivityStateManager getStateManager() { | |
return ACTIVITY_STATE_MANAGER; | |
} | |
@PostConstruct |
View RunJetty.java
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
/** | |
based on | |
<dependency> | |
<groupId>org.eclipse.jetty</groupId> | |
<artifactId>jetty-runner</artifactId> | |
<version>9.2.3.v20140905</version> | |
</dependency> | |
*/ |
View AllowCORSRequestFilter.java
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 com.example.web; | |
import com.google.common.base.Strings; | |
import com.google.common.net.HttpHeaders; | |
import org.springframework.web.filter.OncePerRequestFilter; | |
import javax.servlet.FilterChain; | |
import javax.servlet.ServletException; | |
import javax.servlet.http.HttpServletRequest; | |
import javax.servlet.http.HttpServletResponse; |
View svn-tag.sh
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
svn rm https://svn.example.com/myproject/tags/last-successful-ci/mytag -m "Remove existing Test Tag" --no-auth-cache --non-interactive --username eeichinger --password pass1234 | |
svn copy https://svn.example.com/myproject/trunk@246 https://svn.example.com/myproject/tags/last-successful-ci/mytag -m "Test Tag" --no-auth-cache --non-interactive --username eeichinger --password pass1234 |
View wrap.sh
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 | |
# Wrap raw AAC files in MP4 container and copy ID3v2 tags to MP4 metadata. Original files are not touched, new files appear besides them with .m4a extension | |
# requires MP4Box and kid3 (install via homebrew. You may need to install MP4Box manually from http://gpac.wp.mines-telecom.fr/downloads/gpac-nightly-builds/. Homebrew had troubles installing mp4box. The executable is found inside the osmo4.app, see below) | |
# kid3 also has problems with full qualified filepaths as well as spaces in the filenames | |
for fic in Music/**/*.aac | |
do | |
echo processing $fic |
View start_wait.sh
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 | |
# Usage: | |
# start_wait <modulename> <servername> | |
# Default vals for args | |
# http://stackoverflow.com/questions/9332802/how-to-write-a-bash-script-that-takes-optional-input-arguments | |
TIMEOUT=90 |
View CatchOperatorTest.java
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 myrx; | |
import org.junit.Test; | |
import rx.Observable; | |
import rx.Producer; | |
import rx.Subscriber; | |
import rx.exceptions.Exceptions; | |
import rx.functions.Func1; | |
import rx.plugins.RxJavaPlugins; |
View pom.xml
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"?> | |
<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"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>@@GROUPID@@</groupId> | |
<artifactId>@@ARTIFACTID@@</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<packaging>pom</packaging> | |
<description> | |
A default pom template - use for | |
- set file encoding |
View .gitconfig
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
[user] | |
name = <committer name> | |
email = <email address> | |
[gui] | |
encoding = utf-8 | |
[core] | |
autocrlf = off | |
ignorecase = true | |
[format] | |
pretty = format:%h %cr %cN: %s |
OlderNewer