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 June 19, 2025 17:00
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for non-video, non-activity quests! For stream/play quests use the desktop app!

Note

When doing stream quests, you need at least 1 other account in the vc!

How to use this script:

  1. Accept a quest under Discover -> Quests
@ghostrider-05
ghostrider-05 / discord_app_protocols.md
Last active June 16, 2025 15:38
An unofficial list of discord app protocol routes

Discord app protocol routes

Home:

  • /: discord://-/
  • friends: discord://-/channels/@me/
  • nitro: discord://-/store
  • shop: discord://-/shop
  • message requests: discord://-/message-requests
  • family centre: discord://-/family-center
@jamesfreeman959
jamesfreeman959 / keepawake.ps1
Last active June 12, 2025 12:56
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) {