I hereby claim:
- I am rozag on github.
- I am rozag (https://keybase.io/rozag) on keybase.
- I have a public key ASARItueGmMr-u_4jpmjgnAWrp82xuI_vKQztwqAK3KADAo
To claim this, I am signing this object:
#!/usr/bin/env bash | |
set -x | |
rm -rv .idea/caches | |
rm -rv .idea/libraries | |
rm -v .idea/gradle.xml | |
rm -v .idea/modules.xml |
____________ | |
| itty | | |
| android | | |
| peerlab | | |
| ./sh | | |
‾‾‾‾‾‾‾‾‾‾‾‾ |
{ | |
"feeds": [ | |
"http://umneem.org/index.xml", | |
"https://nplus1.ru/rss", | |
"https://nplusonemag.com/feed/", | |
"http://disgustingmen.com/feed/", | |
"http://gorky.media/feed/", | |
"https://thenextweb.com/feed/" | |
] | |
} |
{ | |
"feeds": [ | |
"https://medium.com/feed/android-news", | |
"http://akarnokd.blogspot.com/feeds/posts/default", | |
"http://feeds.feedburner.com/GoogleOpenSourceBlog", | |
"http://feeds.feedburner.com/BenNorthrop", | |
"http://os.phil-opp.com/atom.xml", | |
"http://dev.cheremin.info/feeds/posts/default", | |
"http://feeds.feedburner.com/blogspot/hsDu", | |
"http://ruhaskell.org/feed.xml", |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.List; | |
public final class BenchmarkUtil { | |
private static final List<Long> TIMES = new ArrayList<>(10); | |
private static long startNanos; |
/** | |
* A lifecycle-aware observable that sends only new updates after subscription, used for events like | |
* navigation and Snackbar messages. | |
* <p> | |
* This avoids a common problem with events: on configuration change (like rotation) an update | |
* can be emitted if the observer is active. This LiveData only calls the observable if there's an | |
* explicit call to setValue() or call(). | |
* <p> | |
* Note that only one observer is going to be notified of changes. | |
*/ |
public final class Pair { | |
public int firstValue; | |
public int secondValue; | |
// Reference to next object in the pool | |
private Pair next; | |
// The lock used for synchronization | |
private static final Object sPoolSync = new Object(); |
I hereby claim:
To claim this, I am signing this object:
<?xml version="1.0"?> | |
<course> | |
<id>{d8abcd0f-44a9-44ab-b6a3-e06908041b7b}</id> | |
<title>Русская by Slava Kochetkov</title> | |
<description>Writing by Slava Kochetkov ([email protected])</description> | |
<keyboardLayout>ru</keyboardLayout> | |
<lessons> | |
<lesson> | |
<id>{08ca1f8d-6ddc-4c50-a0ad-d3979b7716cf}</id> | |
<title>Level 1</title> |
<!doctype html> | |
<html> | |
<head lang="en"> | |
<meta charset="UTF-8"> | |
<title>Game of Life</title> | |
</head> | |
<canvas></canvas> | |
<script src="main.js"></script> |