Skip to content

Instantly share code, notes, and snippets.

View radzio's full-sized avatar
👨‍💻
Coding

Radek Piekarz radzio

👨‍💻
Coding
View GitHub Profile
/*
Xively MQTT example
-Subscribes to Xively feed
-publishes current value to serial monitor
Based on Basic MQTT Example by knolleary
By Calum Barnes, Xively (c) 2013
@radzio
radzio / build.gradle
Last active August 29, 2015 14:27
Automatically sets JDK_1_8 in Android Studio java module
apply plugin: 'java'
apply plugin: 'idea'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
configurations {
// pending http://jira.codehaus.org/browse/GRADLE-471
providedCompile { description = 'Jars not to be included in the generated POM' }
import android.app.Activity;
import android.app.Dialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.v4.app.DialogFragment;
import android.support.v7.app.AlertDialog;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.Button;

Keybase proof

I hereby claim:

  • I am radzio on github.
  • I am radzio (https://keybase.io/radzio) on keybase.
  • I have a public key ASCXQuDHoZ_wR4XsxPROEOYtzn38vcHRPNb2Msutwc6d-wo

To claim this, I am signing this object:

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:enabled="@{StringUtils.isNotNullOrEmpty(viewModel.firstName) &amp;&amp; StringUtils.isNotNullOrEmpty(viewModel.lastName)}"
android:onClick="@{() -> viewModel.buttonClicked()}"
android:text="@string/btn_hello" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:enabled="@{viewModel.helloButtonEnabled}"
android:onClick="@{() -> viewModel.buttonClicked()}"
android:text="@string/btn_hello_rx" />
public static class MainViewModel {
public ObservableField<String> firstName = new ObservableField<>();
public ObservableField<String> lastName = new ObservableField<>();
public ObservableField<String> helloText = new ObservableField<>();
public ObservableBoolean helloButtonEnabled = new ObservableBoolean(false);
public MainViewModel() {
Observable.combineLatest(toObservable(firstName), toObservable(lastName), (firstName, lastName) -> StringUtils.isNotNullOrEmpty(firstName) && StringUtils.isNotNullOrEmpty(lastName))
public class MainViewModelTests {
@Test
public void mainViewModel_firstName_lastName_helloButtonEnabledSetToTrue() throws Exception {
MainViewModel mainViewModel = new MainViewModel();
assertFalse(mainViewModel.helloButtonEnabled.get());
mainViewModel.firstName.set("a");
mainViewModel.lastName.set("b");
public static <T> Observable<T> toObservable(@NonNull final ObservableField<T> observableField) {
return Observable.create(new Observable.OnSubscribe<T>() {
@Override
public void call(final Subscriber<? super T> subscriber) {
if (!subscriber.isUnsubscribed()) {
subscriber.onNext(observableField.get());
}
final OnPropertyChangedCallback callback = new OnPropertyChangedCallback() {
@radzio
radzio / Instructions.md
Last active March 8, 2018 19:33
commit-msg.sh

Instructions

  • copy the file commit-msg to .git/hooks/commit-msg
  • make sure your delete the sample file .git/hooks/commit-msg.sample
  • Make commit msg executable. chmod +x .git/hooks/commit-msg
  • Edit commit-msg to better fit your development branch, commit regex and error message
  • Profit $$

Shell example