This file contains 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
马岗云浮 | |
电信: | |
[AS4134] -> [AS2914] -> [AS32787] -> [AS27357/AS36459] 20 hops | |
--- github.com ping statistics --- | |
100 packets transmitted, 98 received, 2% packet loss, time 99030ms | |
rtt min/avg/max/mdev = 343.288/369.634/386.614/9.755 ms | |
联通: | |
[AS17816] -> [AS4837] -> [AS2914] -> [AS32787] -> [AS27357/AS36459] 22 hops | |
--- github.com ping statistics --- |
This file contains 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
package main | |
import ( | |
"flag" | |
"fmt" | |
"sync" | |
"sync/atomic" | |
"time" | |
"runtime" | |
"net/http" |
This file contains 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
<html> | |
<head> | |
<script type="text/javascript"> | |
var append = function(text) { | |
document.body.appendChild(document.createTextNode(text)); | |
document.body.appendChild(document.createElement("br")); | |
} | |
bad = function(lhs, rhs) { | |
var dist = (rhs - lhs) >>> 0; | |
return dist < 256; |
This file contains 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
#include <string> | |
#include <list> | |
#include <iostream> | |
class FunctorBase | |
{ | |
public: | |
virtual std::string get() = 0; | |
}; |
This file contains 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
#include "coroutine.h" | |
#include "deferred.h" | |
#include <QtGui> | |
#include "md5.h" | |
static int ptcc = 0; | |
struct PromiseTimerCtx | |
{ | |
HANDLE timer; |