Joplin as autotext library or custom prompt library for AI chat

https://friendica.tf-translate.net/display/cafe12d9-176a-0861-aca4-d9f833762554

Joplin as autotext library or custom prompt library for AI chat

I wrote an AutoHotkey v2 script that enables using Joplin as an autotext library on Windows. Press a hotkey, browse Joplin notes from a customized top-level ...

Chris Mallett & Steve Gray released #AutoHotkey version 2.0.26. https://www.autohotkey.com/
AutoHotkey

Free keyboard macro program. Supports hotkeys for keyboard, mouse, and joystick. Can expand abbreviations as you type them (AutoText).

📢 UNC6692 : campagne d'ingénierie sociale avec suite malware modulaire SNOW
📝 ## 🔍 Contexte

Publié le 23 avril 2026 par Mandiant / Google Threat Intelligenc...
📖 cyberveille : https://cyberveille.ch/posts/2026-04-26-unc6692-campagne-d-ingenierie-sociale-avec-suite-malware-modulaire-snow/
🌐 source : https://cloud.google.com/blog/topics/threat-intelligence/unc6692-social-engineering-custom-malware/?utm_source=substack&utm_medium=email&hl=en
#AutoHotKey #FTK_Imager #Cyberveille

UNC6692 : campagne d'ingénierie sociale avec suite malware modulaire SNOW

🔍 Contexte Publié le 23 avril 2026 par Mandiant / Google Threat Intelligence Group (GTIG), cet article documente une campagne d’intrusion multistade attribuée à un nouveau groupe de menace, UNC6692, détectée fin décembre 2025. 🎯 Vecteur initial et chaîne d’infection L’attaque débute par une campagne d’emails massifs destinée à saturer la boîte de réception de la victime, créant un sentiment d’urgence. L’attaquant contacte ensuite la victime via Microsoft Teams, en se faisant passer pour un employé du helpdesk IT, et l’incite à cliquer sur un lien de « patch anti-spam ».

CyberVeille
Chris Mallett & Steve Gray released #AutoHotkey version 2.0.24. https://www.autohotkey.com/
AutoHotkey

Free keyboard macro program. Supports hotkeys for keyboard, mouse, and joystick. Can expand abbreviations as you type them (AutoText).

Sooo, I made some progress on automating shit on #Android to coerce #backups from apps, e.g. those that are not included in SeedVault.

Thanks to #Keymapper (via @fdroidorg)! This is as close as it gets to have #AutoHotkey „scripting“ on Android.
You don't even need a spare key: Just add a homescreen widget to run your script.
Maybe not as portable as #Tasker and different approach, but something to keep an eye on!

https://keymapper.app
https://github.com/keymapperorg/KeyMapper

#GPLv3 #floss #software

Chris Mallett & Steve Gray released #AutoHotkey version 2.0.23. https://www.autohotkey.com/
AutoHotkey

Free keyboard macro program. Supports hotkeys for keyboard, mouse, and joystick. Can expand abbreviations as you type them (AutoText).

Вайбкодим .EXE под Windows с GUI на AutoHotkey v2

История о том, как превратить консольный скрипт в полноценное Windows приложение с GUI на AutoHotkey v2 при помощи нейросетей и вайбкодинга. Разбираем этапы от поиска инструментов до борьбы с интерфейсом в стиле софта нулевых без единой строчки кода, написанной вручную.

https://habr.com/ru/articles/1016392/

#вайбкодинг #нейросети #программирование #autohotkey #cmd #ffmpeg #gemini #qwen

Вайбкодим .EXE под Windows с GUI на AutoHotkey v2

Продолжая изучать тему вайбкодинга для пет проектов на личном опыте и все еще находясь под впечатлением от предыдущей быстрой разработки , когда благодаря нейросетям без особых навыков...

Хабр
Chris Mallett & Steve Gray released #AutoHotkey version 2.0.22. https://www.autohotkey.com/
AutoHotkey

Free keyboard macro program. Supports hotkeys for keyboard, mouse, and joystick. Can expand abbreviations as you type them (AutoText).

Windows users mostly dislike the command-line. This GUI utility is useful.

https://www.autohotkey.com/

```
#Requires AutoHotkey v2.0

#SingleInstance Force

MainGui := Gui("+AlwaysOnTop", "CSV to XLSX Converter")
MainGui.SetFont("s10", "Segoe UI")

MainGui.Add("Text",, "Input CSV File:")
EditFile := MainGui.Add("Edit", "w400 ReadOnly", "No file selected...")
MainGui.Add("Button", "x+10 w80", "Browse").OnEvent("Click", SelectFile)

MainGui.Add("Text", "xm", "Output Folder:")
EditDir := MainGui.Add("Edit", "w400 ReadOnly", "No folder selected...")
MainGui.Add("Button", "x+10 w80", "Browse").OnEvent("Click", SelectFolder)

MainGui.Add("Text", "xm h10", "") ; Spacer
BtnConvert := MainGui.Add("Button", "xm w100 h40 Default", "Convert Now")
BtnConvert.OnEvent("Click", RunConversion)

MainGui.Show()

SelectFile(*) {
Selected := FileSelect(3, , "Select your CSV file", "CSV Files (*.csv)")
if Selected
EditFile.Value := Selected
}

SelectFolder(*) {
Selected := DirSelect(, 3, "Select the destination folder")
if Selected
EditDir.Value := Selected
}

RunConversion(*) {
InputPath := EditFile.Value
OutputDir := EditDir.Value

if (InputPath = "No file selected..." || OutputDir = "No folder selected...") {
MsgBox("Please select both a file and a destination!", "Missing Info", "Icon!")
return
}

FullCommand := 'csv2xlsx.exe -o="' . OutputDir . '\output.xlsx" ' . InputPath

try {
RunWait(FullCommand)
MsgBox("Success! The file has been converted.", "Done", "Iconi")
} catch {
MsgBox("Error.", "Execution Failed", "Iconx")
}
}
```
#autohotkey #gui #coding

AutoHotkey

Free keyboard macro program. Supports hotkeys for keyboard, mouse, and joystick. Can expand abbreviations as you type them (AutoText).

#TerSoftware (Utilitários de Teclado/Mouse/Touch - softwares que ampliam a funcionalidade do teclado, do mouse/trackpad ou das telas de toque)

Autokey (Linux)

Alternativa ao AutoHotKey (Windows). Uso ele basicamente para duas coisas:

- 1) remapear teclas. Exemplo: enquanto mantenho AltGr pressionado, transformo as letras do lado direito em um NumPad (meu teclado é 60%);

- 2) expansão de texto. Exemplos: digitando ":email" é preenchdio "[email protected]", ":dt" = "2026-02-24" (data), ":hr" = "12:53" (hora) etc.

PS: Uso também o keyd para trabalhar com várias camadas (layers) no teclado. Mas este é mais chato e "perigoso" de configurar; o mesmo dev fez também o warpd, que permite mover o cursor do mouse usando o teclado.

[Introduction to Autokey — AutoKey Main 0.96.0 documentation](https://autokey.github.io/intro.html)

#FOSS #AutoKey #keyd #warpd #AutoHotKey

Introduction to Autokey — AutoKey Main 0.96.0 documentation