Skip to content

Instantly share code, notes, and snippets.

View Maarc's full-sized avatar
:octocat:

Marc Zottner Maarc

:octocat:
View GitHub Profile
{
"schemaVersion": 1,
"label": "LinkedIn",
"message": "Connect",
"color": "#0077B5",
"namedLogo": "linkedin",
"logoColor": "white"
}
@Maarc
Maarc / .block
Last active May 20, 2021 20:43 — forked from Fil/.block
t-SNE and a force
license: mit
@Maarc
Maarc / ulimit.sh
Created July 11, 2017 15:48
Bash script updating the ulimits
#!/usr/bin/env bash
# Automating https://blog.dekstroza.io/ulimit-shenanigans-on-osx-el-capitan/
echo "Updating the ulimits on OSX to be able to run RHAMT tests."
sudo bash -c 'cat >/Library/LaunchDaemons/limit.maxfiles.plist <<EOF
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
@Maarc
Maarc / template.json
Last active April 12, 2017 13:25
template.json
{
"kind": "Template",
"apiVersion": "v1",
"metadata": {
"annotations": {
"description": "Brownie, the brownfield application",
"iconClass": "icon-jboss",
"tags": "eap,postgresql,javaee,java,database,jboss,xpaas",
"version": "1.0.0",
"openshift.io/display-name": "Brownie, the brownfield application"
#!/bin/bash
DIR_CURRENT=$(pwd)
DIR_GIT_CODE=apps-code
DIR_APPS=apps-built
APP_LIST=( https://github.com/MPDL/INGe https://github.com/sidlors/aeweb )
mvnt()
{
@Maarc
Maarc / build_RHAMT_analyzer.sh
Last active March 27, 2017 11:20
Script for building the Red Hat Application Migration Toolkit (RHAMT)
#!/bin/bash
# Current directory
DIR_CURRENT=$(pwd)
# Directory with the source code
DIR_GIT_CODE='code'
# Maven build parameters
MVN_ARGS='-T 4 -U clean eclipse:clean eclipse:eclipse install'