sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install terminatorTerminator should be setup as default now. Restart your terminal (shortcut: "Ctrl+Alt+T").
| www.nowcoder.com##.common-list > .clearfix:has(div.clearfix .feed-origin-oprt:has-text(推荐)) |
| # -*- coding: utf-8 -*- | |
| import logging | |
| import json | |
| # if you open the initializer feature, please implement the initializer function, as below: | |
| # def initializer(context): | |
| # logger = logging.getLogger() | |
| # logger.info('initializing') | |
| def handler(event, context): |
| public class DesCore { | |
| /* | |
| * encrypt the string to string made up of hex return the encrypted string | |
| */ | |
| public String strEnc(String data, String firstKey, String secondKey, String thirdKey) { | |
| int leng = data.length(); | |
| String encData = ""; | |
| List firstKeyBt = null, secondKeyBt = null, thirdKeyBt = null; |
| Serial Keys: | |
| FU512-2DG1H-M85QZ-U7Z5T-PY8ZD | |
| CU3MA-2LG1N-48EGQ-9GNGZ-QG0UD | |
| GV7N2-DQZ00-4897Y-27ZNX-NV0TD | |
| YZ718-4REEQ-08DHQ-JNYQC-ZQRD0 | |
| GZ3N0-6CX0L-H80UP-FPM59-NKAD4 | |
| YY31H-6EYEJ-480VZ-VXXZC-QF2E0 | |
| ZG51K-25FE1-H81ZP-95XGT-WV2C0 | |
| VG30H-2AX11-H88FQ-CQXGZ-M6AY4 |
| // ==UserScript== | |
| // @name 移除知乎网页版首页广告 | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description 移除知乎首页广告 | |
| // @author You | |
| // @match https://www.zhihu.com/ | |
| // @grant none | |
| // ==/UserScript== |
| print("Hello,World") |
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "strings" | |
| "go/parser" | |
| "go/token" | |
| "go/ast" | |
| "go/printer" |
| function step(iterator, resolve, reject, nextcall, throwcall, key, args) { | |
| try { | |
| var info = iterator[key](args) | |
| var v = info.value | |
| } catch (e) { | |
| reject(e) | |
| return | |
| } | |
| if (info.done) { | |
| resolve(v) |
| /* | |
| * Regular expression implementation. | |
| * Supports only ( | ) * + ?. No escapes. | |
| * Compiles to NFA and then simulates NFA | |
| * using Thompson's algorithm. | |
| * | |
| * See also http://swtch.com/~rsc/regexp/ and | |
| * Thompson, Ken. Regular Expression Search Algorithm, | |
| * Communications of the ACM 11(6) (June 1968), pp. 419-422. | |
| * |