I hereby claim:
- I am f3ndot on github.
- I am justinbull (https://keybase.io/justinbull) on keybase.
- I have a public key whose fingerprint is E09D 38DE 8FB7 5745 2044 A0F4 1A2B DEAA 68FD B34C
To claim this, I am signing this object:
{ | |
"swagger": "2.0", | |
"info": { | |
"description": "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.", | |
"version": "1.0.0", | |
"title": "Swagger Petstore", | |
"termsOfService": "http://swagger.io/terms/", | |
"contact": { | |
"email": "[email protected]" | |
}, |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <aom/aom_decoder.h> | |
#include <aom/aomdx.h> | |
// This is a minimal example of trying to import libaom's decoding functionality, as seen in | |
// ffmpeg/libavformat's source code. First ensure libaom-dev is installed on your machine with | |
// a version greater than or equal to 1.x | |
// |
I hereby claim:
To claim this, I am signing this object:
<?php | |
session_start(); | |
/********************************* | |
* START of Configuration Options | |
*********************************/ | |
// set the timezone the server should use when working with dates | |
date_default_timezone_set('America/Toronto'); |
#include <limits.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#define BYTETOBINARYPATTERN "%d%d%d%d%d%d%d%d" | |
#define BYTETOBINARY(byte) \ | |
(byte & 0x80 ? 1 : 0), \ | |
(byte & 0x40 ? 1 : 0), \ | |
(byte & 0x20 ? 1 : 0), \ |