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
Sub 删除换行及空格() | |
' | |
' 删除换行及空格 宏 | |
' 用于调整从PDF文件中复制出的文字格式 | |
' | |
Selection.Find.ClearFormatting | |
Selection.Find.Replacement.ClearFormatting | |
With Selection.Find | |
.Text = " " | |
.Replacement.Text = "" |
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 Douban2Piratebay | |
// @namespace https://github.com/bitdust/Douban2Piratebay | |
// @version 0.8 | |
// @description Add direct link to piratebay from douban movie page. | |
// @author bitdust | |
// @match https://movie.douban.com/subject/* | |
// @grant none | |
// @updateURL https://gist.github.com/bitdust/3b63ab636e5fd7be59d6a55ef9638351/raw/Douban2Piratebay.user.js | |
// @downloadURL https://gist.github.com/bitdust/3b63ab636e5fd7be59d6a55ef9638351/raw/Douban2Piratebay.user.js |
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
# | |
# Copyright (C) 2006-2008 OpenWrt.org | |
# | |
# This is free software, licensed under the GNU General Public License v2. | |
# See /LICENSE for more information. | |
# | |
include $(TOPDIR)/rules.mk | |
PKG_NAME:=8021xbridge |
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
MButton:: ;五狗齐飞 | |
Send w | |
Send {LButton} | |
Send {tab} | |
Send w | |
Send {LButton} | |
Send {tab} | |
Send w | |
Send {LButton} | |
Send {tab} |
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
# 替换tmux prefix键为 Ctrl+a | |
set -g prefix C-a | |
bind-key C-a send-prefix | |
unbind C-b | |
# zoom pane <-> window | |
#http://tmux.svn.sourceforge.net/viewvc/tmux/trunk/examples/tmux-zoom.sh | |
bind ^z run "tmux-zoom" | |
## | |
#copy-mode 将快捷键设置为vi 模式 |
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
# | |
# Copyright (C) 2006-2008 OpenWrt.org | |
# | |
# This is free software, licensed under the GNU General Public License v2. | |
# See /LICENSE for more information. | |
# | |
include $(TOPDIR)/rules.mk | |
PKG_NAME:=njit8021xclient |
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
/* | |
main.c | |
关于线程的使用示例 | |
参考: | |
https://msdn.microsoft.com/en-us/library/windows/desktop/ms684841.aspx | |
http://blog.csdn.net/morewindows/article/details/7421759 | |
*/ | |
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
#!/usr/bin/env python | |
#coding=utf-8 | |
# | |
# Generate a list of dnsmasq rules with ipset for gfwlist | |
# | |
# Copyright (C) 2014 http://www.shuyz.com | |
# Ref https://code.google.com/p/autoproxy-gfwlist/wiki/Rules | |
# this file is copied from http://aenes.com/post/740.html | |
import urllib2 |
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
" 默认选项 | |
set fileencodings=utf8,cp936,gb18030,big5 | |
syntax enable | |
syntax on | |
set number " 显示行号 | |
set nocompatible " 与vi不兼容 | |
set showmatch " 匹配括号 | |
" tab相关 |
NewerOlder