I hereby claim:
- I am javawolfpack on github.
- I am javawolfpack (https://keybase.io/javawolfpack) on keybase.
- I have a public key whose fingerprint is 98A9 3E8C 2C30 C047 F87F 5448 52B3 42F3 E513 2140
To claim this, I am signing this object:
| #include <stdio.h> | |
| #include <unistd.h> | |
| int main() | |
| { | |
| /* fork a child process */ | |
| fork(); | |
| /* fork another child process */ | |
| fork(); | |
| /* and fork another */ |
| import android.app.IntentService; | |
| import android.content.Intent; | |
| import android.util.Log; | |
| import com.google.android.gms.location.ActivityRecognitionResult; | |
| import com.google.android.gms.location.DetectedActivity; | |
| /** | |
| * Created by bryandixon on 4/6/15. | |
| */ |
| HttpPost httpost = new HttpPost("<Server address here>"); | |
| StringEntity se = new StringEntity(JSONObject.toString()); | |
| httpost.setEntity(se); | |
| httpost.setHeader("Accept", "application/json"); | |
| httpost.setHeader("Content-type", "application/json"); | |
| ResponseHandler responseHandler = new BasicResponseHandler(); | |
| String responseBody = httpclient.execute(httpost, responseHandler); |
| //DataReceiver is my Broadcast Reciever Class | |
| intentReceiver = new DataReceiver(); | |
| filter = new IntentFilter(); | |
| //Add intents to recieve | |
| filter.addAction(Intent.ACTION_CAMERA_BUTTON); | |
| registerReceiver(intentReceiver, filter); |
| WifiLock lk; | |
| final int sdkVersion = Integer.parseInt(Build.VERSION.SDK); | |
| if (sdkVersion >= Build.VERSION_CODES.HONEYCOMB_MR1) { | |
| Log.d(TAG, "hi-perf wifi lock"); | |
| lk = wfManager.createWifiLock(3, "LockTag"); | |
| } | |
| else{ | |
| lk = wfManager.createWifiLock(WifiManager.WIFI_MODE_FULL, "LockTag"); | |
| } |
| keytool -list -v -keystore debug.keystore -alias androiddebugkey -storepass android -keypass android |
| <script> | |
| new Ajax.Request('/test2', { | |
| method:'get', | |
| onSuccess: function(transport) { | |
| var response = transport.responseText || "no response text"; | |
| //alert("Success! \n\n" + response); | |
| $('content').replace(response) | |
| new Ajax.Request('/test3', { | |
| method:'get', | |
| onSuccess: function(transport) { |
I hereby claim:
To claim this, I am signing this object:
| server { | |
| listen 80; | |
| server_name example.org; | |
| charset utf-8; | |
| #listen 443 ssl; | |
| # location /static { |
| kubectl run -i --rm --tty mpi-test --overrides=' | |
| { | |
| "apiVersion": "batch/v1", | |
| "spec": { | |
| "template": { | |
| "spec": { | |
| "volumes": [ | |
| { | |
| "secret": { | |
| "secretName": "ssh-key-secret" |