I hereby claim:
- I am andriusa on github.
- I am andrius (https://keybase.io/andrius) on keybase.
- I have a public key whose fingerprint is 428E 9864 B825 993A C137 B7FC 53B9 196C D9D5 BF4A
To claim this, I am signing this object:
| from telemetry import benchmark | |
| from telemetry.web_perf import timeline_based_measurement | |
| from telemetry.timeline import chrome_trace_category_filter | |
| from telemetry.page import shared_page_state | |
| from telemetry.timeline import chrome_trace_config | |
| from telemetry.page import cache_temperature | |
| from telemetry import story | |
| from telemetry import page |
| library(ggplot2) | |
| library(splines) | |
| library(MASS) | |
| library(plyr) | |
| library(reshape) | |
| library(scales) | |
| options(scipen=999) | |
| traffic<-read.table("trafficEvents.txt", header=TRUE, sep="," ,as.is=FALSE) |
I hereby claim:
To claim this, I am signing this object:
| /* Structure used to swap the bytes in a 64-bit unsigned long long. */ | |
| union byteswap_64_u { | |
| unsigned long long a; | |
| uint32_t b[2]; | |
| }; | |
| /* Function to byteswap big endian 64bit unsigned integers | |
| * back to little endian host order on little endian machines. | |
| * As above, on big endian machines this will be a null macro. | |
| * The macro ntohll() is defined in byteorder64.h, and if needed, | |
| * refers to _ntohll() here. |