Skip to content

Instantly share code, notes, and snippets.

@AkashaP
AkashaP / WinKeyMask.ahk
Last active January 26, 2025 05:38
Win Key + RButton Mask semi mask
#Requires AutoHotkey v2.0
#SingleInstance Force
; Mask windows start menu shortcut (somewhat) without it showing up when holding right mouse button
; with this you can still use windows key as shortcut in some applications
; without completely disabling windows key + windows+key shortcuts in other solutions
; it does not work perfectly in my case as double click LWin, spamming LWin + a bunch of buttons still causes start menu to open
; but this works 'well enough', maybe consider it a feature, i don't spam LWin for anything anyway, it's just occasional press and keyboard shortcut
; I needed it to not go off while holding right click
@AkashaP
AkashaP / mqueue.asd
Last active April 13, 2022 16:12 — forked from artob/mqueue.asd
POSIX message queues for Common Lisp.
;; This is free and unencumbered software released into the public domain.
(asdf:defsystem :mqueue
:name "mqueue"
:description "POSIX message queues for Common Lisp."
:version "0.0.0"
:author "Arto Bendiken <[email protected]> modified by Akasha"
:depends-on (:cffi)
:serial t
:components ((:file "mqueue")))
@AkashaP
AkashaP / new-slydb-displayer.patch
Created February 3, 2022 20:59
Alternate Sly-db Display patch
diff --git a/sly.el b/sly.el
index 0dbd6bbf..006d3934 100644
--- a/sly.el
+++ b/sly.el
@@ -5509,13 +5509,24 @@ Also mark the window as a debugger window."
(let* ((action '(sly-db--display-in-prev-sly-db-window))
(buffer (current-buffer))
(win
- (if (cond ((eq sly-db-focus-debugger 'auto)
- (eq sly--send-last-command last-command))