| name | read-jira |
|---|---|
| description | Use when user says "read ticket XXX", "read XXX", or provides a Jira key matching pattern [A-Z]{1,6}-[0-9]{1,6} (e.g. FRONT-108, FEX-23). Fetches ticket context via acli before implementing or asking questions. |
Charts are from different sources and thus colors are inconsistent, please carefully read the chart's legends.
Like this? Check React vs others https://gist.github.com/tkrotoff/b1caa4c3a185629299ec234d2314e190
https://insights.stackoverflow.com/trends?tags=flutter%2Creact-native
The PATH is an important concept when working on the command line. It's a list
of directories that tell your operating system where to look for programs, so
that you can just write script instead of /home/me/bin/script or
C:\Users\Me\bin\script. But different operating systems have different ways to
add a new directory to it:
- The first step depends which version of Windows you're using:
- If you're using Windows 8 or 10, press the Windows key, then search for and
| /** | |
| * Logs lifecycle events and provides subclasses a method to bind the views, bindViews(). | |
| * | |
| * Note that the bindViews() uses Butterknife to bind the views. However, the views | |
| * can also be bound without using Butterknife. Using Butterknife or not | |
| * plays no part in this demonstration. | |
| */ | |
| // BaseFragment.java | |
| public abstract class BaseFragment extends Fragment { |
The only way I've succeeded so far is to employ SSH.
Assuming you are new to this like me, first I'd like to share with you that your Mac has a SSH config file in a .ssh directory. The config file is where you draw relations of your SSH keys to each GitHub (or Bitbucket) account, and all your SSH keys generated are saved into .ssh directory by default. You can navigate to it by running cd ~/.ssh within your terminal, open the config file with any editor, and it should look something like this:
Host * AddKeysToAgent yes
> UseKeyChain yes
| # -*- coding: utf-8 -*- | |
| import pywikibot | |
| import sys | |
| from collections import Counter | |
| from random import randint | |
| wiki = 'wikipedia' | |
| lang = 'vi' |
| public class LoadingView extends RelativeLayout { | |
| public LoadingView(Context context) { | |
| super(context); | |
| } | |
| public LoadingView(Context context, AttributeSet attrs) { | |
| super(context, attrs); | |
| } | |
| public LoadingView(Context context, AttributeSet attrs, int defStyle) { |
| package com.example; | |
| import android.util.Log; | |
| import com.crashlytics.android.Crashlytics; | |
| import timber.log.Timber; | |
| /** | |
| * {@link timber.log.Timber.Tree} which prints important messages to Crashlytics |
| /* | |
| Inspired by http://cokere.com/RFC3339Date.txt | |
| All rights deserve to Chad Okere | |
| */ | |
| import java.text.SimpleDateFormat; | |
| import java.util.Date; | |
| import java.util.Locale; | |
| import java.util.TimeZone; |
| package com.your.package; | |
| import android.support.design.widget.Snackbar; | |
| import android.view.View; | |
| import android.view.ViewGroup; | |
| import com.daimajia.easing.BaseEasingMethod; | |
| import com.daimajia.easing.Glider; | |
| import com.daimajia.easing.Skill; | |
| import com.nineoldandroids.animation.AnimatorSet; |