Apps | winget | brew |
---|---|---|
Arc | ||
Citrix Workspace | ||
Clash | ||
VSCode | ||
Firefox | ||
Flow | ||
Hidden Bar | ||
IINA |
I hereby claim:
- I am jizusun on github.
- I am jizu (https://keybase.io/jizu) on keybase.
- I have a public key whose fingerprint is 8F4D 202E 7D15 AB51 0DBC 2356 4A12 2629 F78F 4013
To claim this, I am signing this object:
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
// ==UserScript== | |
// @name Copy LeetCode Solution to clipboard | |
// @namespace https://gist.github.com/jizusun/84495bd63e2ed4a33823a9cfc728a810 | |
// @version 0.3 | |
// @description Better format to paste into Notion | |
// @author You | |
// @match https://leetcode.com/problems/*/solution/ | |
// @grant GM_setClipboard | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Coursera subtitles(outside the video) | |
// @description Coursera subtitles outside the video. | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @author 木杉, [email protected] | |
// @include http://www.coursera.org/* | |
// @include https://www.coursera.org/* | |
// @grant none | |
// @run-at document-end |
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
export password=foobar | |
export method=chacha20-ietf-poly1305 | |
export port=9301 | |
docker run -e PASSWORD=${password} -e METHOD=${method} -p${port}:8388 -p${port}:8388/udp -d shadowsocks/shadowsocks-libev | |
export host=$(curl -s ipinfo.io/json | grep \"ip\" | awk -F'"' '{ print $4 }') | |
echo $host:$port |
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
// 54: Object - is | |
// To do: make all tests pass, leave the assert lines unchanged! | |
// Follow the hints of the failure messages! | |
// Shape - superclass | |
function Shape() { | |
this.x = 0; | |
this.y = 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
function corp-proxy { | |
http_proxy="http://proxy.${1}.sap.corp:8080" | |
HTTP_PROXY=$http_proxy | |
https_proxy=$http_proxy | |
HTTPS_PROXY=$http_proxy | |
ftp_proxy=$http_proxy | |
FTP_PROXY=$http_proxy | |
no_proxy=".sap.corp, localhost" | |
NO_PROXY=$no_proxy |
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
<link href="https://fonts.googleapis.com/css?family=Rubik:300" rel="stylesheet"> | |
<link href="https://fonts.googleapis.com/css?family=Roboto:700" rel="stylesheet"> | |
<div id="root"></div> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>React Router v3 - Docs - Introduction</title> | |
<script src="https://unpkg.com/react/umd/react.development.js"></script> | |
<script src="https://unpkg.com/react-dom/umd/react-dom.development.js"></script> | |
<!-- Don't use this in production: --> | |
<script src="https://unpkg.com/[email protected]/babel.min.js"></script> |
NewerOlder