Skip to content

Instantly share code, notes, and snippets.

View ximing's full-sized avatar
🤓
I may be slow to respond.

席铭 ximing

🤓
I may be slow to respond.
View GitHub Profile
@btroncone
btroncone / rxjs_operators_by_example.md
Last active May 3, 2026 02:38
RxJS 5 Operators By Example
@staltz
staltz / introrx.md
Last active May 3, 2026 02:38
The introduction to Reactive Programming you've been missing
@debloper
debloper / bandwidth.js
Last active July 15, 2025 12:50
Determine client's connection speed with JavaScript
// Let's initialize the primitives
var startTime, endTime, fileSize;
// Set up the AJAX to perform
var xhr = new XMLHttpRequest();
// Rig the call-back... THE important part
xhr.onreadystatechange = function () {
// we only need to know when the request has completed