I hereby claim:
- I am pepyakin on github.
- I am pepyakin (https://keybase.io/pepyakin) on keybase.
- I have a public key ASDw4RgKepT0eMpioUUQ5iqjLGVKDfdzWfs7i0p95WgKGAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
struct Vm { | |
pc: usize, | |
} | |
impl Vm { | |
fn new() -> Vm { | |
Vm { pc: 0 } | |
} | |
fn execute<F>(&mut self, mut probe: F) |
public class ExampleApplication extends Application { | |
@Override public void onCreate() { | |
super.onCreate(); | |
try { | |
Class<?> cls = Class.forName("android.sec.clipboard.ClipboardUIManager"); | |
Method m = cls.getDeclaredMethod("getInstance", Context.class); | |
Object o = m.invoke(null, this); | |
} catch (Exception ignored) { } | |
} | |
} |
// Top-level build file where you can add configuration options common to all sub-projects/modules. | |
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:0.11.+' | |
// NOTE: Do not place your application dependencies here; they belong |
/* | |
* example.c | |
*/ | |
#include <msp430g2553.h> | |
#include <uart.h> | |
#define ARRAY_SIZE 16 | |
/** |