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:
| /* | |
| * example.c | |
| */ | |
| #include <msp430g2553.h> | |
| #include <uart.h> | |
| #define ARRAY_SIZE 16 | |
| /** |
| // 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 |
| 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) { } | |
| } | |
| } |
| struct Vm { | |
| pc: usize, | |
| } | |
| impl Vm { | |
| fn new() -> Vm { | |
| Vm { pc: 0 } | |
| } | |
| fn execute<F>(&mut self, mut probe: F) |
I hereby claim:
To claim this, I am signing this object:
| use foo; |
| FROM ubuntu:trusty | |
| RUN \ | |
| apt-get update && \ | |
| apt-get install -y build-essential cmake python curl | |
| # Add source for nodejs, | |
| # see https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions | |
| RUN curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - | |
| RUN apt-get install nodejs |
| #![feature(core_intrinsics)] | |
| use std::os::raw::c_char; | |
| use std::ffi::{CStr, CString}; | |
| use std::ptr; | |
| trait ToCStr<T> { | |
| fn borrow_ptr(self) -> (T, *const c_char); | |
| } |
| Apple LLVM version 8.1.0 (clang-802.0.42) | |
| Target: x86_64-apple-darwin16.6.0 | |
| Thread model: posix | |
| InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin |
| Finished dev [unoptimized + debuginfo] target(s) in 0.0 secs | |
| Running target/debug/deps/bindgen-0e79f9c99fbeae2f | |
| running 17 tests | |
| test codegen::struct_layout::test_align_to ... ok | |
| test codegen::struct_layout::test_bytes_from_bits_pow2 ... ok | |
| test features::test::str_to_target ... ok | |
| test ir::comment::test::picks_up_single_and_multi_line_doc_comments ... ok | |
| test ir::layout::test_layout_for_size ... ok | |
| test ir::comment::test::processes_single_lines_correctly ... ok |