One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| [ | |
| { "keys": [":"], "type": "function", "command": "enter_command_line_mode" }, | |
| { "keys": ["q"], "type": "prompt", "command": "exit", "cursorPosition": -1 }, | |
| { "keys": ["/"], "type": "prompt", "command": "search \"\"", "cursorPosition": -2 }, | |
| { "keys": ["TAB","l"], "type": "function", "command": "focus_next" }, | |
| { "keys": ["SHIFT_TAB","h"], "type": "function", "command": "focus_previous" }, | |
| { "keys": ["UP","k"], "type": "function", "command": "move_up" }, | |
| { "keys": ["DOWN","j"], "type": "function", "command": "move_down" }, | |
| { "keys": ["PAGE_UP","K","u"], "type": "function", "command": "page_up" }, |
| # 1. 安装tpm: mkdir -p ~/.tmux/plugins && cd ~/.tmux/plugins && git clone https://github.com/tmux-plugins/tpm | |
| # 2. 按 prefix + I(大写) 来安装插件 | |
| # 3. 安装 vim-obsession, 用 vundle 安装或: cd ~/.vim/bundle && git clone git://github.com/tpope/vim-obsession.git --depth 1 && vim -u NONE -c "helptags vim-obsession/doc" -c q | |
| ##### 以上需手工执行 ##### | |
| ## 修改 tmux-prefix 键: ctrl+b --> ctrl+a | |
| set -g prefix C-a | |
| unbind C-b | |
| bind a send-prefix | |
| #set-option -g prefix2 ` |
| <?php | |
| //登陆https://console.online.net/en/api/access,那一串最黑的字符串 | |
| const API_CODE='4279482ea1d251b8b40fd5ee83c1a'; | |
| //自己设置的密码 | |
| const USERNAME='123456'; | |
| const PASSWORD='123456'; |
| 0-mail.com | |
| 0815.ru | |
| 0clickemail.com | |
| 0wnd.net | |
| 0wnd.org | |
| 10minutemail.com | |
| 20minutemail.com | |
| 2prong.com | |
| 30minutemail.com | |
| 3d-painting.com |
| from scrapy.spider import Spider | |
| from scrapy.contrib.spiders import CrawlSpider, Rule | |
| from scrapy.contrib.linkextractors.sgml import SgmlLinkExtractor | |
| from scrapy.selector import Selector | |
| from scrapy.item import Item, Field | |
| import urllib | |
| class Question(Item): | |
| tags = Field() | |
| answers = Field() |
| # iOS builds for ARMv7 and simulator i386. | |
| # Assumes any dependencies are in a local folder called libs and | |
| # headers in a local folder called headers. | |
| # Dependencies should already have been compiled for the target arch. | |
| PROJ=untitled | |
| ifeq ($(IOS), 1) | |
| ARCH=armv7 | |
| DEVICE=OS | |
| CC_FLAGS=-arch $(ARCH) |
| #!/bin/bash | |
| pro='tcp' | |
| NAT_Host=$1 | |
| NAT_Port=$2 | |
| Dst_Host=$3 | |
| Dst_Port=$4 | |
| iptables -t nat -A PREROUTING -m $pro -p $pro --dport $NAT_Port -j DNAT --to-destination $Dst_Host:$Dst_Port | |
| iptables -t nat -A POSTROUTING -m $pro -p $pro --dport $Dst_Port -d $Dst_Host -j SNAT --to-source $NAT_Host |
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "os" | |
| ) | |
| func main() { | |
| decoder := json.NewDecoder(os.Stdin) |
| #!/usr/bin/env groovy | |
| import java.util.concurrent.Executors | |
| import java.util.concurrent.TimeUnit | |
| def OPTIONS = [ | |
| UID : 276904, // B站UID | |
| ROOMID : 131985, // 直播间的房间编号,不是地址编号 | |
| OUTPUTDIR : "/home/live", // 录制文件输出目录,/D:\ffmpeg\bin/ | |
| FFMPEG : "/usr/bin/ffmpeg", // ffmpeg可执行程序位置,/D:\ffmpeg\bin\ffmpeg.exe/ | |
| CHECK_INTERVAL: 60, // 直播检测线程的间隔,单位:秒 |