Skip to content

Instantly share code, notes, and snippets.

View myjwgit's full-sized avatar

jian tan myjwgit

View GitHub Profile
@myjwgit
myjwgit / free-database-hosting.md
Created August 11, 2024 11:16 — forked from bmaupin/free-database-hosting.md
Free database hosting
@myjwgit
myjwgit / .Cloud.md
Created August 11, 2024 10:59 — forked from morphors/.Cloud.md
一些免费的云资源

IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装;PaaS提供软件/框架(可以自己选);SaaS只能使用开发好的软件(卖软件本身);BaaS一般类似于非关系数据库,但各家不通用,有时还有一些其它东西。

其他人的集合

@myjwgit
myjwgit / TP_middle_Scroll.ahk
Created August 3, 2024 21:35 — forked from llinfeng/TP_middle_Scroll.ahk
AHK - scroll with middle-mouse-key + trackpoint for Thinkpad keyboards
; Midbutton down for scrolling {{{
; Feature: with acceleration as intended.
; Source: http://forum.notebookreview.com/threads/ultranav-middle-click-button-scroll.423415/
; Linking source: https://superuser.com/questions/91074/thinkpad-trackpoint-scrolling-and-middle-click-possible
; Working version {{{
$*MButton::
Hotkey, $*MButton Up, MButtonup, off
KeyWait, MButton, T0.2
If ErrorLevel = 1
{
@myjwgit
myjwgit / mousescroll.ahk
Created August 3, 2024 21:20 — forked from askvictor/mousescroll.ahk
AHK script to do middle-click scrolling
#commentflag // ; Change to C++ comment style
// Code stolen from http://superuser.com/questions/1029053/autohotkey-scrolling-middle-click-mouse-acceleration/1029054
// Thanks to http://superuser.com/users/276424/user21820 for writing this
// Licence: CC-BY-SA as per StackExchange code licence prior to Feb 2016.
// Settings //
global rightbuttonscroll:=0 // set to 1 iff the right button is to be used for scrolling instead of the middle button
global scrollbeforeclick:=1 // set to 1 iff scrolling is allowed before the original button click otherwise scrolling is delayed for (clicklimit)
global leftrighttomiddle:=0 // set to 1 iff rightbuttonscroll==1 and pressing both left+right buttons together generates middle button press