I hereby claim:
- I am sacko87 on github.
- I am sacko87 (https://keybase.io/sacko87) on keybase.
- I have a public key ASCNXDKnG-FEgladOQoSvdWNqLIXPlVGhVEN4UVVSFoRXgo
To claim this, I am signing this object:
| import logging | |
| import os | |
| import signal | |
| from logging.handlers import QueueHandler, RotatingFileHandler, QueueListener | |
| from multiprocessing import Manager | |
| DEBUG = os.environ.get("DEBUG", False) |
| package main | |
| import ( | |
| "log" | |
| "sync" | |
| ) | |
| type Job struct { | |
| source int | |
| } |
| program allocate | |
| implicit none | |
| ! an allocatable array of integers | |
| integer, allocatable :: numbers(:) | |
| ! some variables | |
| integer :: n, err, i = 0 | |
| do | |
| ! how many elements? | |
| n = howmany() |
| % draft stuffs | |
| \usepackage{lineno} | |
| \usepackage{totcount} | |
| \@ifpackageloaded{lineno}{}{\newcommand\linenumbers\relax} | |
| \@ifpackageloaded{totcount}{ | |
| \newtotcounter{citnum} | |
| \AtEveryBibitem{\stepcounter{citnum}} | |
| \newcommand\refcount{\todo{This document contains \total{citnum}\ references.}} |
I hereby claim:
To claim this, I am signing this object:
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>WAI-ARIA Test</title> | |
| </head> | |
| <body> | |
| <div role="application" aria-controls="p1" class="ctrl" tabindex="0" aria-describedby="i1"> | |
| <p id="p1" role="alert" aria-live="assertive">i am text.</p> | |
| <div id="i1"> |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>WAI-ARIA Test</title> | |
| </head> | |
| <body> | |
| <div role="application" tabindex="0"> | |
| <p id="i1" role="alert" aria-live="assertive">i am text.</p> | |
| <ul role="navgation"> |
| #include "utf16.h" | |
| #include <errno.h> | |
| uint8_t | |
| isutf16(const unsigned char* string) | |
| { | |
| uint16_t W1, W2; | |
| unsigned char *ptr = (unsigned char*) string; | |
| while((W1 = *((uint16_t*) ptr)) != 0x0L) { | |
| if(W1 < 0xd800 || W1 > 0xdfff) { |
| #include "utf8.h" | |
| #include <errno.h> | |
| uint8_t | |
| isutf8(const unsigned char *string) | |
| { | |
| int nbytes; | |
| unsigned char *ptr = (unsigned char *) string; | |
| while(*ptr) { | |
| nbytes = 1; |
| #include <stdio.h> | |
| #include <signal.h> | |
| #include <string.h> | |
| #include <unistd.h> | |
| #include <execinfo.h> | |
| #ifndef ACTION | |
| #define ACTION SIGSEGV | |
| #endif |