This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<title>for-in vs. Object.keys (uncached)</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script> | |
<script src="./suite.js"></script> | |
</head> | |
<body> | |
<h1>Open the console to view the results</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// xv2flv | |
// Found on http://hi.baidu.com/naylonslain/item/9586125a9f5979dbd58bac47 | |
#include <stdio.h> | |
#include <stdlib.h> | |
int convert_file(char *szSourceFile, int bIsFastConv) | |
{ | |
char szNewFileName[256] = {0}; | |
int buffer[0x400]; |