Skip to content

Instantly share code, notes, and snippets.

View colourful987's full-sized avatar
💭
Quantitative change, Then Qualitative change

PMST colourful987

💭
Quantitative change, Then Qualitative change
  • Bytedance
  • Hangzhou
View GitHub Profile
// https://github.com/n8henrie/pycookiecheat
// https://github.com/bertrandom/chrome-cookies-secure/blob/e04db39a03cdde5912712fd1f659b68fe0af5ea3/index.js
// https://www.jianshu.com/p/c94363c33bae
// npm install sqlite3 keytar
const crypto = require('crypto')
const sqlite3 = require('sqlite3')
const url = require('url')
const keytar = require('keytar')
@steven2358
steven2358 / ffmpeg.md
Last active May 10, 2024 20:57
FFmpeg cheat sheet
@scokmen
scokmen / HttpStatusCode.ts
Created April 25, 2017 11:10
Typescript Http Status Codes Enum
"use strict";
/**
* Hypertext Transfer Protocol (HTTP) response status codes.
* @see {@link https://en.wikipedia.org/wiki/List_of_HTTP_status_codes}
*/
enum HttpStatusCode {
/**
* The server has received the request headers and the client should proceed to send the request body
@vlyahovich
vlyahovich / memory.js
Created October 5, 2014 19:25
Fast and slow objects example
function FastPurchase (units, price) {
this.units = units;
this.price = price;
this.total = 0;
this.x = 1;
};
var fast = new FastPurchase(3, 25);
fast.x = null;