Skip to content

Instantly share code, notes, and snippets.

View murano500k's full-sized avatar

Artem Radchenko murano500k

View GitHub Profile
@murano500k
murano500k / MainActivity.java
Created October 13, 2016 23:19
Rx background op
package rx.android.samples;
import android.app.Activity;
import android.os.Bundle;
import android.os.HandlerThread;
import android.os.Looper;
import android.util.Log;
import android.view.View;
import java.util.concurrent.TimeUnit;
import rx.Observable;
@murano500k
murano500k / apply-bundle.sh
Created September 20, 2016 13:41
scripts to generate bundle with diff between two branches for all projects in repoand apply it on existing repo
#!/bin/bash
if [ -z "$1" ];then
echo "Lack of parameters. Use: $0 [path_to_repo]"
echo "run from dir _changes_BRANCH1_not_BRANCH2"
exit
fi
PTH="$1"
WORKD=$(pwd)
REMOTE="$2"
temp_branch1="${WORKD%_not_*}"