yekingyan's recent timeline updates
yekingyan's repos on GitHub
TypeScript · 20 watchers
obsidian-open-in-other-editor
Open current active file in gVim or VScode.
HTML · 18 watchers
Backup-Douban-Broadcast
备份豆瓣广播
JavaScript · 16 watchers
anki_search_on_web
在google、bing、yahoo等搜索引擎上,同步搜索本地的Anki数据。Tampermonkey script
Python · 4 watchers
Weibo
个人微博备份
Python · 3 watchers
flypy-yk
小鹤双拼五笔形,将鹤形补码改为五笔
Python · 1 watchers
rime-wubi-86-single
【五筆字型】輸入方案_含86单字词库
Python · 0 watchers
Algorithms_in_the_Python
用Python实现的一些算法
JavaScript · 0 watchers
analysis-account
Python · 0 watchers
anki-connect
Anki plugin to expose a remote API for creating flash cards.
JavaScript · 0 watchers
close_danmaku
默认关闭弹幕
Python · 0 watchers
delta_update
增量更新模块
Vue · 0 watchers
Django-drf-vue
Shell · 0 watchers
doubi
一个逗比写的各种逗比脚本~
Python · 0 watchers
Flask_for_my_web
Go · 0 watchers
go-base-web
JavaScript · 0 watchers
HandyEditor
HandyEditor is a WYSIWYG rich text web editor from Catfish CMS that is lightweight, easy to use, customizable, multi-language supported and user-focused.
Python · 0 watchers
leetcode
Python · 0 watchers
memory_cache
内存缓存结果
Python · 0 watchers
Mind_map
Lua · 0 watchers
nvimdots
A well configured and structured Neovim.
TypeScript · 0 watchers
obsidian-front-matter-title
Add Tab Number For Front Matter Title
JavaScript · 0 watchers
obsidian-releases
Community plugins list, theme list, and releases of Obsidian.
JavaScript · 0 watchers
obsidian-smart-connections
Chat with your notes in Obsidian! Plus, see what's most relevant in real-time! Interact and stay organized. Powered by OpenAI ChatGPT, GPT-4 & Embeddings.
0 watchers
Obsidian_to_Anki
Script to add flashcards from text/markdown files to Anki
Python · 0 watchers
python_2.7_practice
学习python2.7时的练手
C · 0 watchers
qmk-config
0 watchers
rmk
Rust keyboard firmware library with layers, macros, real-time keymap editing, wireless(BLE) and split support
JavaScript · 0 watchers
RomeCity
cocos creator game
Vim Script · 0 watchers
vim
轻量级 Vim 配置框架,全中文注释
Vue · 0 watchers
vue-editor
对wangEditor的封装组件,v-model
HTML · 0 watchers
web_crawler
by python2.7.6
Python · 0 watchers
web_practice
Python · 0 watchers
yekingyan
0 watchers
zmk
ZMK Firmware Repository
0 watchers
zmk-config
yekingyan

yekingyan

V2EX member #331271, joined on 2018-07-23 13:23:16 +08:00
yekingyan's recent replies
Apr 23, 2024
Replied to a topic by kinboy 程序员 有没有鼠标连击过滤器之类的软件
我前几天碰到同样的问题的,罗技 G102 。
可以通过 ahk 解决。下载 AHK 软件并安装,将下面内容保存为 main.ahk 文件,然后以管理员身份运行这个文件

```ahk
#Requires AutoHotkey v2.0

class Timer { ; 延时触发一次
static PRIORITY := -1

__New(callback, delay := 1000) {
this.count := 0
this.delay := delay
this.timer := ObjBindMethod(this, "Tick")
this.isWait := false
this.callback := callback
}

Start() {
this.isWait := true
SetTimer(this.timer, -this.delay, Timer.PRIORITY)
return this
}

Stop() {
SetTimer(this.timer, 0)
this.isWait := false
return this
}

ReRun(delay := "") {
if (delay != "") {
this.delay := delay
}
this.count := 0

this.Stop()
this.Start()
return this
}

Tick() {
this.count++
this.callback()
this.isWait := false
}

isWaiting() {
return this.isWait
}
}

~LButton:: {
KeyWait "LButton"
BlockInput(true)
Timer((t) => (BlockInput(false)), 30).Start() ; 无视 30 毫秒内双击
}

```
https://github.com/yekingyan/flypy-yk
安卓安装同文输入法,可以试试这个,直接五笔与小鹤双拼混输。还能用小鹤双拼反查五笔
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   5531 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 16ms · UTC 07:00 · PVG 15:00 · LAX 00:00 · JFK 03:00
♥ Do have faith in what you're doing.