I hereby claim:
- I am aperezdc on github.
- I am aperezdc (https://keybase.io/aperezdc) on keybase.
- I have a public key ASBkif_OHqrzpx3d7P1K378eO_uN2reqFz2jRmGL3LKgZAo
To claim this, I am signing this object:
/* | |
* unwindtest.c | |
* Copyright (C) 2017 Adrian Perez <[email protected]> | |
* | |
* Distributed under terms of the MIT license. | |
*/ | |
#define _GNU_SOURCE | |
#include <ucontext.h> | |
#include <dlfcn.h> |
# | |
# Place this in the root directory of a WebKit source tree. | |
# | |
# This needs the following Zsh plug-ins: | |
# | |
# https://github.com/Tarrasch/zsh-autoenv | |
# https://github.com/aperezdc/virtualz | |
# | |
autostash WEBKIT_TOP_LEVEL="${0:A:h}" |
# Maintainer: TingPing <[email protected]> | |
pkgname='tartan-git' | |
pkgver=0.3.0.r14.g5d9a499 | |
pkgrel=1 | |
pkgdesc='Clang analysis plugin for GLib and GNOME' | |
url='https://www.freedesktop.org/software/tartan/' | |
arch=('i686' 'x86_64') | |
provides=('tartan') | |
conflicts=('tartan') | |
license=('GPL3') |
#! /bin/bash | |
# vim: set ts=4 sw=4 noet | |
# | |
# jhenv | |
# Copyright (C) 2017 Adrian Perez <[email protected]> | |
# | |
# Distributed under terms of the MIT license. | |
# | |
set -e |
# | |
# Automatically generated file; DO NOT EDIT. | |
# Buildroot 2017.02-rc1-12213-gb8bb78c99 Configuration | |
# | |
BR2_HAVE_DOT_CONFIG=y | |
BR2_HOST_GCC_AT_LEAST_4_5=y | |
BR2_HOST_GCC_AT_LEAST_4_6=y | |
BR2_HOST_GCC_AT_LEAST_4_7=y | |
BR2_HOST_GCC_AT_LEAST_4_8=y | |
BR2_HOST_GCC_AT_LEAST_4_9=y |
# Needs "curl", "sha1sum", some basic shell tools, | |
# plus the following Zsh plugins installed: | |
# | |
# https://github.com/Tarrasch/zsh-autoenv | |
# https://github.com/aperezdc/virtualz | |
# | |
# Drop this file into a new directory as .autoenv.zsh | |
# and enter it to have a virtualenv configured to use | |
# for building Android, and the "repo" tool installed | |
# and ready to be used. Bonus: ccache is configured. |
I hereby claim:
To claim this, I am signing this object:
/* | |
* Silly example demonstrating that it is valid to jump | |
* to arbitrary labels inside "switch" statements using | |
* "goto" in C. | |
*/ | |
bool is_not_small_power_of_two (int value) | |
{ | |
if (value < 0) { | |
/* It is legal to jump into a switch */ |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>HiPack Web Service Test</title> | |
<script type="text/javascript"> | |
function convertHiPack() { | |
var req = new XMLHttpRequest(); | |
req.onload = function () { | |
if (req.readyState == 4) { |
#! /usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# vim:fenc=utf-8 | |
# | |
# Copyright © 2015 Adrian Perez <[email protected]> | |
# | |
# Distributed under terms of the MIT license. | |
import bottle | |
import hipack, yaml, json |