Skip to content

Instantly share code, notes, and snippets.

View Alan3344's full-sized avatar

Alan Alan3344

  • 12:35 (UTC +07:00)
View GitHub Profile
@0x1306a94
0x1306a94 / skip_translate.js
Last active November 20, 2024 01:11
让谷歌翻译插件翻译网页的时候,绕过代码块和一些无需翻译的元素
// ==UserScript==
// @name 谷歌翻译绕过代码块(适配github,mathworks等)
// @version 0.3
// @description 让谷歌翻译插件翻译网页的时候,绕过代码块和一些无需翻译的元素
// @match http*://*.*/*
// @match http://localhost:*/*
// @match http://127.0.0.1:*/*
// @match http://[::]:*/*
// @license MIT
// @grant none
@deneschen
deneschen / windows CMD命令大全及详细解释和语法
Created February 26, 2018 14:33
windows CMD命令大全及详细解释和语法
windows CMD命令大全及详细解释和语法
引用:
http://letle.iteye.com/blog/169045
http://www.cppblog.com/kyelin/archive/2007/04/21/22540.aspx
windows批处理程序中的特殊字符
批处理介绍
纯以dos系统而言,可执行程序大约可以细分为五类,依照执行优先级由高到低排列分别是:
DOSKEY宏命令(预先驻留内存)
@yamionp
yamionp / locustfile.py
Last active November 9, 2024 08:57
Websocket Locust Sample. locustfile and Echo/Chat Server
# -*- coding:utf-8 -*-
from __future__ import absolute_import
from __future__ import unicode_literals
from __future__ import print_function
import json
import uuid
import time
import gevent