Skip to content

Instantly share code, notes, and snippets.

#IfwinActive, Messaging | LinkedIn - Google Chrome
::smsg::
clipboardOld:=ClipboardAll
Clipboard:="Send Hello,`nThanks for reaching out and connecting. "
. "I am always happy to make new connections here on LinkedIn. "
. "Although, I find sales messages a bit intrusive and drain my valuable time."
. "So, I am delighted to stay connected, but any more sales messages will, unfortunately, "
. "result in me blocking you.`n`nThanks`nMatthew"
send ^v
sleep, 100 ;always pause after pasting and before restoring clipbooard
@JoeGlines
JoeGlines / GUI example.ahk
Created April 1, 2022 16:45
Saving and Importing to a GUI - example from friday support call
#SingleInstance, Force
; Create the sub-menus for the menu bar:
Menu, FileMenu, Add, &New, Clear
Menu, FileMenu, Add
Menu, FileMenu, Add, &Import, Import
Menu, FileMenu, Add, &Export, Export
Menu, FileMenu, Add
Menu, FileMenu, Add, E&xit, GuiClose
Appskey & z:: ;launch my zoom meeting and turn on video
run %comspec% /c ""C:\Users\Joe\AppData\Roaming\Zoom\bin\Zoom.exe" "--url=zoommtg://zoom.us/join?action=join&confno=81557xxxx"",,hide
WinWait, Zoom Meeting
Sleep, 100
Send !v ;Alt V is typical hotkey for toggling video
return
#SingleInstance,Force
Appskey & z:: ;launch my zoom meeting
run %comspec% /c ""%A_AppData%\Zoom\bin\Zoom.exe" "--url=zoommtg://zoom.us/join?action=join&confno=8155790366&pwd=myPassword"",,hide
WinWait, Zoom Meeting
Sleep, 100
Send !v ;Alt V is typical hotkey for toggling video
return
@NotGovernor
NotGovernor / Vaccine Truth Seeking with Isaac and Danny.md
Last active July 12, 2021 02:44
Vaccine Truth Seeking with Isaac and Danny

The document contains the discovery from each of the participants in the debate. Participants were given multiple days before the debate to review each others sources and are generally (soft rule) not allowed to reference anything outside of the things they submitted here.

You can review Patricks Debate Format with the full list of rules that all participants agreed to here: https://bit.ly/3ebSltB

Proposition: Do the risks of vaccines outweigh the benefits for most people?

Isaac Lindenberger's Discovery

1. Vaccines are Safe

@ronjouch
ronjouch / ronj-autohotkey.ahk
Created April 20, 2012 13:28
Collection of AutoHotkey scripts I use
; Variables definition
; -----------------------------------------------------------------------------
EnvGet, userProfile, USERPROFILE
Software := userProfile . "\Dropbox\software\"
; Launch or toggle program, http://lifehacker.com/5468862/create-a-shortcut-key-for-restoring-a-specific-window
; -----------------------------------------------------------------------------
ToggleWinMinimize(WindowTitle)
{
SetTitleMatchMode,2