This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package be.brol | |
| import android.os.Binder | |
| import android.os.Bundle | |
| import android.support.v4.app.BundleCompat | |
| import android.support.v4.app.Fragment | |
| /** | |
| * Eases the Fragment.newInstance ceremony by marking the fragment's args with this delegate | |
| * Just write the property in newInstance and read it like any other property after the fragment has been created |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class WifiNetworksFragment : TonalFragment(R.layout.wifi_networks_fragment) { | |
| // This automatically creates and clears the binding in a lifecycle-aware way. | |
| private val binding: WifiNetworksFragmentBinding by viewBinding() | |
| ... | |
| } | |
| class WifiNetworkView @JvmOverloads constructor( | |
| context: Context, | |
| attrs: AttributeSet? = null, |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from mine import * | |
| mc = Minecraft() | |
| def showMyPosition(): | |
| while True: | |
| time.sleep(0.1) | |
| pos = mc.player.getTilePos() | |
| mc.postToChat(str(pos)) | |
| time.sleep(1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.text.SpannableStringBuilder; | |
| import java.util.ArrayDeque; | |
| import java.util.Deque; | |
| import static android.text.Spanned.SPAN_INCLUSIVE_EXCLUSIVE; | |
| /** A {@link SpannableStringBuilder} wrapper whose API doesn't make me want to stab my eyes out. */ | |
| public class Truss { | |
| private final SpannableStringBuilder builder; | |
| private final Deque<Span> stack; |
I hereby claim:
- I am mmbs on github.
- I am mmbs (https://keybase.io/mmbs) on keybase.
- I have a public key ASAMWwrxBIyrHq3sPoiEpdO1rBSWCQPPFrLLr6L_Bj4Mkgo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public abstract class BaseAdapter<T, VH extends BaseViewHolder<T>> extends RecyclerView.Adapter<VH> { | |
| private List<T> items; | |
| // Missing: setItems(), addItem(), removeItem(), ... | |
| @Override | |
| public final void onBindViewHolder(VH vh, int position) { | |
| T item = items.get(position); | |
| vh.performBind(item, position); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class NetworkChangeReceiver extends BroadcastReceiver{ | |
| private static final String LOG_TAG = "NetworkChangeReceiver"; | |
| private boolean isConnected = false; | |
| @Override | |
| public void onReceive(Context context, Intent intent) { | |
| Log.v(LOG_TAG, "Receieved notification about network status"); | |
| isNetworkAvailable(context); | |
| } |
NewerOlder


