I hereby claim:
- I am cubapp on github.
- I am cuba (https://keybase.io/cuba) on keybase.
- I have a public key ASBOrgm7hOdzr7GE_phGhxg4w3QKKcG6TG5Tn4i7aqd7Vgo
To claim this, I am signing this object:
adb devices | |
echo "Wait at least 10secs and use the Android screen" | |
adb shell screenrecord --output-format=h264 - | ffplay -probesize 1M - |
#include <stdio.h> | |
#include <stdlib.h> | |
// from http://www.thelinuxrain.com/articles/bash-drivers-start-your-engines | |
// C version is about 2-4 times faster than perl version. | |
int main (int argc, char *argv[]) | |
{ | |
if (argc != 2){ | |
printf("Usage: %s filename\n", argv[0]); |
#include <stdio.h> | |
void main(void){for(int i=0; i<=99; (++i%15)?(i%5)?(i%3)?printf("%d\n",i):printf("Fizz\n"):printf("Buzz\n"):printf("FizzBuzz\n"));} |
#include <stdio.h> | |
int main(void) | |
{ | |
int i; | |
for(i=1; i<=100; i++) | |
(i%15)?(i%5)?(i%3)?printf("%d\n",i):printf("Fizz\n"):printf("Buzz\n"):printf("FizzBuzz\n"); | |
return 0; | |
} |
I hereby claim:
To claim this, I am signing this object:
# Actual atmospheric pressure in hPa | |
aap = 990 | |
# Actual temperature in Celsius | |
atc = 10 | |
# Height above sea level | |
hasl = 500 | |
# Adjusted-to-the-sea barometric pressure | |
a2ts = aap + ((aap * 9.80665 * hasl)/(287 * (273 + atc + (hasl/400)))) |