A clear and concise description of what the bug is.
A clear and concise description of what you expected to happen.
What is the impact of this bug on the user, how critical is to fix? P0, P1 .. P4
| HELP.md | |
| .gradle | |
| build/ | |
| !gradle/wrapper/gradle-wrapper.jar | |
| !**/src/main/**/build/ | |
| !**/src/test/**/build/ | |
| ### STS ### | |
| .apt_generated | |
| .classpath |
| #!/bin/bash | |
| # remove expired certs from a keystore | |
| # set FN to the keystore file | |
| FN=cacerts.jks | |
| echo "finding expired certs..." | |
| ALIASES=`keytool -list -v -keystore $FN -storepass changeit | grep -i 'alias\|until' ` |
[ci skip] in the commit titleIf you haven’t worked with JavaScript in the last few years, these three points should give you enough knowledge to feel comfortable reading the React documentation:
let and const statements. For the purposes of the React documentation, you can consider them equivalent to var.class keyword to define JavaScript classes. There are two things worth remembering about them. Firstly, unlike with objects, you don't need to put commas between class method definitions. Secondly, unlike many other languages with classes, in JavaScript the value of this in a method [depends on how it is called](https://developer.mozilla.org/en-US/docs/Web/Jav| # Find things listening on ports on Mac | |
| lsof -n -i4TCP:$PORT | grep LISTEN | |
| # Find a process PID | |
| ps ax | grep ruby | |
| # ...and kill it | |
| kill -9 <PID> | |
| # Alternatively, kill all of them with a name | |
| pkill node |
| import android.app.Activity; | |
| import android.content.BroadcastReceiver; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| import android.content.IntentFilter; | |
| import android.graphics.Rect; | |
| import android.os.Parcel; | |
| import android.os.Parcelable; | |
| import android.support.v4.content.LocalBroadcastManager; | |
| import android.util.AttributeSet; |
| import java.security.Key; | |
| import java.security.SecureRandom; | |
| import javax.crypto.Cipher; | |
| import javax.crypto.KeyGenerator; | |
| import javax.crypto.SecretKey; | |
| import javax.crypto.spec.IvParameterSpec; | |
| import org.apache.commons.codec.binary.Base64; |