Skip to content

Instantly share code, notes, and snippets.

@knownothingsnow
knownothingsnow / FUCK APPLE OCSP
Created July 28, 2022 12:46 — forked from 1a57danc3/FUCK APPLE OCSP
FUCK APPLE OCSP
127.0.0.1 ocsp-lb.apple.com.akadns.net
127.0.0.1 ocsp-cn-lb.apple.com.akadns.net
127.0.0.1 ocsp.apple.com.download.ks-cdn.com
127.0.0.1 k128-mzstatic.gslb.ksyuncdn.com
127.0.0.1 ocsp.apple.com.cdn20.com
127.0.0.1 ocsp.g.aaplimg.com
127.0.0.1 ocsp.apple.com
127.0.0.1 ocsp.digicert.com
@knownothingsnow
knownothingsnow / gitclone.sh
Created October 16, 2020 11:13
通过 www.gitclone.com 加速 github clone
,gitclone(){
if [[ "$1" =~ ^git@github.com ]]; then
local repo=$(echo $1 | grep -Po '(?<=git@github\.com:)[\w-]+\/[\w-]+')
local origin_url=$1
elif [[ $1 =~ ^https://github.com ]]; then
local repo=$(echo $1 | grep -Po '(?<=https:\/\/github\.com\/)[\w-]+\/[\w-]+')
local origin_url=$1
elif [[ $1 == "gh" ]]; then
local repo=${4}
local origin_url="git@github.com:$repo.git"
@knownothingsnow
knownothingsnow / regexCheatsheet.js
Created March 8, 2020 11:03 — forked from cxa/regexCheatsheet.js
A regex cheatsheet 👩🏻‍💻 (by Catherine)
let regex;
/* 匹配特定的字符串 */
regex = /hello/; // 查找斜杠中的字符串(大小写敏感)……匹配 "hello", "hello123", "123hello123", "123hello",但不匹配 "hell0", "Hello"
regex = /hello/i; // 查找斜杠中的字符串(大小写不敏感)……匹配 "hello", "HelLo", "123HelLO"
regex = /hello/g; // 全局查找斜杠中的字符串……
/* 通配符 */
regex = /h.llo/; // "." 匹配除了换行外的任何一个字符……匹配 "hello", "hallo",但不匹配 "h\nllo"
regex = /h.*llo/; // "*" 匹配任何字符零次或多次,如 "hello", "heeeeeello", "hllo", "hwarwareallo"
@knownothingsnow
knownothingsnow / regexCheatsheet.js
Created March 8, 2020 11:03 — forked from sarthology/regexCheatsheet.js
A regex cheatsheet 👩🏻‍💻 (by Catherine)
let regex;
/* matching a specific string */
regex = /hello/; // looks for the string between the forward slashes (case-sensitive)... matches "hello", "hello123", "123hello123", "123hello"; doesn't match for "hell0", "Hello"
regex = /hello/i; // looks for the string between the forward slashes (case-insensitive)... matches "hello", "HelLo", "123HelLO"
regex = /hello/g; // looks for multiple occurrences of string between the forward slashes...
/* wildcards */
regex = /h.llo/; // the "." matches any one character other than a new line character... matches "hello", "hallo" but not "h\nllo"
regex = /h.*llo/; // the "*" matches any character(s) zero or more times... matches "hello", "heeeeeello", "hllo", "hwarwareallo"
@knownothingsnow
knownothingsnow / Debian.md
Last active September 19, 2020 09:03
Debian 踩坑

Debian 踩坑

sudo locale-gen "en_US.UTF-8" //安装locale文件
sudo dpkg-reconfigure locales   //重新设置语言文件,如果跳转到设置页面,可以选择默认的即可。
sudo vi /etc/default/locale 改为如下

LANG=en_US.UTF-8
LC_ALL=en_US.UTF-8
@knownothingsnow
knownothingsnow / Auth.js
Created August 1, 2017 06:44
Front-end resource service layer with Fetch API
/**
* resource services of Auth page
*/
import http from './_Http.js'
export default http({
userInfo: {
url: '/api/auth/get-user',
type: 'json',
fetch('https://stackoverflow.com')
.then(res => {
console.log('step1', res)
})
.then(res => {
console.log('step2')
throw new Error('borken here')
})
.then(res => {
console.log('step3')
@knownothingsnow
knownothingsnow / star.js
Created June 18, 2017 02:56
一行代码生成星星评分
/**
* @func
* @desc 生成评分
* @param {number} rate [1-5]
* @returns {String}
*/
const getStar = (rate) => '★★★★★☆☆☆☆☆'.slice(5 - rate, 10 - rate)
@knownothingsnow
knownothingsnow / Baymax.html
Created July 29, 2016 18:17
A Baymax animation made by CSS3
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Baymax</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="Baymax">
.box {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}