Skip to content

Instantly share code, notes, and snippets.

View AlexFlipnote's full-sized avatar
🍺
Enjoy a beer, cheers.

AlexFlipnote AlexFlipnote

🍺
Enjoy a beer, cheers.
View GitHub Profile
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active April 8, 2026 01:23
Complete Recent Discord Quest

Caution

As of April 7th 2026, Discord has expressed their intent to crack down on automating quest completion.

Some users have received the following system message:

image

Use the script at your own risk.

Complete Recent Discord Quest

@ghostrider-05
ghostrider-05 / discord_app_protocols.md
Last active April 4, 2026 00:27
An unofficial list of discord app protocol routes

Discord app protocol routes

I know these links work on Windows, have not tested this on any other operating systems.

Home:

  • /: discord://-/
  • friends: discord://-/channels/@me/
  • nitro: discord://-/store
  • shop: discord://-/shop
@jamesfreeman959
jamesfreeman959 / keepawake.ps1
Last active March 11, 2026 17:14
A very simple PowerShell script to keep a Windows PC awake and make lync think the user is active on the keyboard
# Useful references:
#
# https://superuser.com/questions/992511/emulate-a-keyboard-button-via-the-command-line
# https://ss64.com/vb/sendkeys.html
# https://social.technet.microsoft.com/Forums/windowsserver/en-US/96b339e2-e9da-4802-a66d-be619aeb21ac/execute-function-one-time-in-every-10-mins-in-windows-powershell?forum=winserverpowershell
# https://learn-powershell.net/2013/02/08/powershell-and-events-object-events/
#
# Future enhancements - use events rather than an infinite loop
$wsh = New-Object -ComObject WScript.Shell
while (1) {