Skip to content

Instantly share code, notes, and snippets.

View Zlate87's full-sized avatar
🏠
Working from home

Zlatko Stamatov Zlate87

🏠
Working from home
  • CARIAD
  • Berlin, Germany
View GitHub Profile
@Zlate87
Zlate87 / Cheat Sheet.md
Last active September 19, 2023 10:52
Things that I use, but don't want to remember
/*
* Copyright 2013 Chris Banes
*
* 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
@staltz
staltz / introrx.md
Last active December 1, 2025 11:31
The introduction to Reactive Programming you've been missing
@pboos
pboos / annotation-processor-build.gradle
Last active August 7, 2020 06:38
Gradle stuff for Android
configurations {
apt
}
dependencies {
compile 'com.squareup.dagger:dagger:1.1.0'
apt 'com.squareup.dagger:dagger-compiler:1.1.0'
}
android.applicationVariants.all { variant ->