I hereby claim:
- I am passsy on github.
- I am passsy (https://keybase.io/passsy) on keybase.
- I have a public key whose fingerprint is F324 9507 7196 3722 893D F1F6 7172 7F0D 5DDC 5507
To claim this, I am signing this object:
| /* | |
| * Copyright (C) 2011 The Android Open Source Project | |
| * | |
| * 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 |
| live(british, red). | |
| pet(swedish, dog). | |
| drink(danish, tea). | |
| nextto(green, white). | |
| house(A, N) :- live(A, green), live(B, white), house(B, M), M < N. | |
| left(green, white). | |
| right(white, greem). | |
| live(X, green) :- drink(X, coffee). | |
| smoke(Z, pallmall) :- pet(Z, bird). | |
| live(X, yellow) :- smoke(X, dunhill). |
| @Override | |
| public Loader<Cursor> onCreateLoader(final int id, final Bundle bundle) { | |
| // Initialize the CurosorLoader | |
| final int code = id - this.hashCode(); | |
| switch (code) { | |
| case ID1: | |
| String selection = null; | |
| return new CursorLoader(getActivity(), CONTENT_URI, null, | |
| selection, null, null); |
I hereby claim:
To claim this, I am signing this object:
| package com.pascalwelsch.utils; | |
| import android.support.annotation.Nullable; | |
| import android.support.v7.util.DiffUtil; | |
| import android.support.v7.widget.RecyclerView; | |
| import java.util.ArrayList; | |
| import java.util.Collections; | |
| import java.util.Comparator; | |
| import java.util.List; |
| adb shell setprop log.tag.Volley VERBOSE |
This Android Studio Theme (or IntelliJ in general) is based on many IDEs.
use the build in sizes like @dimen/text_size_body_2_material or style/TextAppearance.Material.Headline.
Simple helper file for standard text sizes in material design. The sizes are provided by the material design documentation https://www.google.com/design/spec/style/typography.html#typography-roboto
| /** | |
| * elevatorsaga level 10 - single queue | |
| * http://play.elevatorsaga.com/#challenge=10 | |
| **/ | |
| { | |
| init: function(elevators, floors) { | |
| _.each(elevators, function(elevator) { | |
| elevator.goToFloor(0); | |
| }); |
| { | |
| init: function(elevators, floors) { | |
| _.each(elevators, function(elevator) { | |
| elevator.goToFloor(0); | |
| }); | |
| var upQueue = []; | |
| var downQueue = []; | |