Skip to content

Instantly share code, notes, and snippets.

View hellojinjie's full-sized avatar
🏠
Working from home

hellojinjie hellojinjie

🏠
Working from home
View GitHub Profile
@52cik
52cik / npm.taobao.sh
Last active February 29, 2024 02:56
npm 淘宝镜像配置
npm set registry https://r.npm.taobao.org # 注册模块镜像
npm set disturl https://npm.taobao.org/dist # node-gyp 编译依赖的 node 源码镜像
## 以下选择添加
npm set sass_binary_site https://npm.taobao.org/mirrors/node-sass # node-sass 二进制包镜像
npm set electron_mirror https://npm.taobao.org/mirrors/electron/ # electron 二进制包镜像
npm set ELECTRON_MIRROR https://cdn.npm.taobao.org/dist/electron/ # electron 二进制包镜像
npm set puppeteer_download_host https://npm.taobao.org/mirrors # puppeteer 二进制包镜像
npm set chromedriver_cdnurl https://npm.taobao.org/mirrors/chromedriver # chromedriver 二进制包镜像
npm set operadriver_cdnurl https://npm.taobao.org/mirrors/operadriver # operadriver 二进制包镜像
@Lynn-cc
Lynn-cc / china.json
Last active January 20, 2017 05:50
中国省边界geojson,包含了省和湖泊,岛屿。注:新疆西边有一块被划开的未知区域。
[{
"name": "未知",
"path": "M78,-670C75,-673,74,-671,74,-673C75,-675,73,-673,73,-673C71,-673,71,-675,70,-675C69,-674,69,-674,69,-674C69,-674,69,-674,68,-675C67,-676,59,-676,53,-673C53,-672,49,-670,50,-668C55,-662,46,-656,54,-653C56,-652,60,-648,59,-644C88,-643,73,-642,82,-652C84,-654,87,-654,90,-657C88,-658,87,-659,86,-658C83,-656,84,-661,82,-662C78,-662,80,-667,78,-670L78,-670zM54,-634C54,-634,54,-634,54,-634zM56,-635C56,-641,65,-628,68,-637C70,-646,72,-638,74,-643C71,-643,67,-644,59,-644C59,-643,59,-643,58,-642C53,-638,54,-643,53,-635C53,-634,53,-634,54,-634C54,-634,53,-634,54,-634C55,-628,56,-631,56,-635L56,-635zM272,-442C267,-444,266,-438,258,-444C259,-440,254,-435,262,-434C269,-433,262,-427,263,-424C267,-417,260,-422,283,-417C303,-413,296,-425,314,-428C340,-431,330,-442,345,-437C349,-436,351,-438,359,-429C361,-427,363,-427,365,-425C366,-422,367,-424,370,-426C376,-428,370,-428,372,-432C370,-434,370,-437,366,-437C359,-437,359,-442,357,-441C349,-437,354,-445,358,-446C361,-448,358,-449,358,-451C358,-46
title description date categories slug
QQ协议分析
QQ协议分析
2014-04-16
protocol
qq-protocol

一. 文字聊天协议族(TCPF, Text Chatting Protocol Family)

@hwdsl2
hwdsl2 / .MOVED.md
Last active May 4, 2024 03:19
IPsec VPN Server Auto Setup Script for Ubuntu and Debian
@ajaijothi
ajaijothi / pattern.js
Created September 23, 2013 10:53
An Android like pattern lock using JavaScript and Raphael (SVG JavaScript library)
var Pattern = function (options) {
"use strict";
this.dimension = options.dimension && options.dimension.indexOf('x') !== -1 ? options.dimension.split('x') : [3, 3];
this.patternRadius = options.patternRadius || 20;
this.patternGap = options.patternGap || 50;
this.innerColor = options.innerColor || '90-#239EE0:5-#1951A0:95';
this.outerColor = options.outerColor || '#333333';
this.background = options.background || '#000000';
this.backgroundOpacity = options.backgroundOpacity || 1;