Skip to content

Instantly share code, notes, and snippets.

View DominikDary's full-sized avatar

Dominik Dary DominikDary

View GitHub Profile
http://microxchg.io/2015/slides/01_01_lessons-from-a-polyglot-portfolio.pdf
http://microxchg.io/2015/slides/01_02_microXchg_2015_architekturbewertung_szoerner.pdf
http://microxchg.io/2015/slides/01_03_SpringCloud.pdf
http://microxchg.io/2015/slides/01_04_microservicesscalafunctionaldomainmodelsmunichberlin2015-150217091332-conversion-gate02.pdf
http://microxchg.io/2015/slides/01_05_uwe_friedrichsen_microservices.pdf
http://microxchg.io/2015/slides/01_06_micro_service_challenges.pdf
http://microxchg.io/2015/slides/01_07_2015-02-13-microXchg-StefanTilkov.pdf
http://microxchg.io/2015/slides/01_08_AdrianCockcroftSlides.pdf
http://microxchg.io/2015/slides/01_09_PrinciplesOfMicroservices-Microxchg.pdf
http://microxchg.io/2015/slides/01_10_MicroServices_-_Are_your_frameworks_ready--microxchg.pdf
@DominikDary
DominikDary / bookmarklet.md
Last active August 29, 2015 14:23 — forked from lukeis/bookmarklet.md
Selendroid-Close-Non-Issue

javascript:(function(){$('#new_comment_field')[0].value='This is a question rather than an issue. Please send questions to the selendroid user group\n\nFor issues please provide a concise reproducible test case and describe what results you are seeing and what results you expect.\n\nSee architecture.html';$('button[name="comment_and_close"]').click()})()

@DominikDary
DominikDary / AdobeLogo
Last active August 29, 2015 14:23 — forked from reevik/AdobeLogo
@DominikDary
DominikDary / .irbrc
Created July 14, 2012 11:35
IRB Configuration to speed up the development of calabash-android mobile tests.
require 'rubygems'
require 'irb/completion'
require 'irb/ext/save-history'
ARGV.concat [ "--readline",
"--prompt-mode",
"simple" ]
# 25 entries in the list
IRB.conf[:SAVE_HISTORY] = 50
@DominikDary
DominikDary / InspectCurrentDialog.java
Created July 14, 2012 21:45
Calabash-Android command to inspect the current dialog.
/*
* Copyright 2012 calabash-driver committers.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
@DominikDary
DominikDary / android_emu_start.sh
Created August 1, 2012 13:40 — forked from stackedsax/android_emu_start.sh
Script for starting up multiple android emulators per box
#!/bin/bash
#####
#
# This script creates android emulators on the fly.
#
# Please refer to the README for usage instructions.
#
####
@DominikDary
DominikDary / .irbrc
Created October 19, 2012 04:18
Calabash-Android IRB configuration for version >= 0.3
require 'rubygems'
require 'irb/completion'
require 'irb/ext/save-history'
ARGV.concat [ "--readline",
"--prompt-mode",
"simple" ]
# 25 entries in the list
IRB.conf[:SAVE_HISTORY] = 50
@DominikDary
DominikDary / ladder.md
Created October 29, 2015 12:29 — forked from jamtur01/ladder.md
Kickstarter Engineering Ladder
#! /bin/bash
#=====================================================================
# Selects an android device
# Copyright (C) 2012-2013 Diego Torres Milano. All rights reserved.
#=====================================================================
get_adb_devices()
{
adb devices 2>&1 | tail -n +2 | sed '/^$/d'
}
@DominikDary
DominikDary / PickerLargeTest.java
Created January 17, 2013 09:01
Calabash-Driver LargeTest related to the question in the calabash-android forum. https://groups.google.com/d/msg/calabash-android/Elm-HzlXULw/lME7ZwgGKfUJ
package de.dary.android.picker;
import java.util.ArrayList;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
import org.testng.Assert;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;