I hereby claim:
- I am emmanuelstroem on github.
- I am emmanuelstroem (https://keybase.io/emmanuelstroem) on keybase.
- I have a public key ASDRIBw4CjxpwToDk2NGrn9z3r_s4ekIiCVJskqPunXOBAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| export DEBIAN_FRONTEND="noninteractive" | |
| # command line arguments | |
| if [ $# -gt 0 ]; then | |
| echo "Your command line contains $# arguments" | |
| domain_name="$1" | |
| else | |
| echo "Your command line contains no arguments" | |
| domain_name="emmanuelopio" |
| package com.test.rootchecker; | |
| import java.io.File; | |
| import java.util.List; | |
| import java.util.Map; | |
| import android.content.Context; | |
| import android.content.pm.ApplicationInfo; | |
| public class RootChecker { |
| <?php | |
| // API access key from Google API's Console | |
| define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' ); | |
| $registrationIds = array( $_GET['id'] ); | |
| // prep the bundle | |
| $msg = array |
| Vector2D = {} | |
| function Vector2D:new(x, y) | |
| local object = { x = x, y = y } | |
| setmetatable(object, { __index = Vector2D }) | |
| return object | |
| end | |
| function Vector2D:copy() | |
| return Vector2D:new(self.x, self.y) |