Skip to content

Instantly share code, notes, and snippets.

View wraithy's full-sized avatar
🐒
Monkey

Wraith wraithy

🐒
Monkey
View GitHub Profile
@wraithy
wraithy / push.md
Last active November 2, 2025 11:43

Enable Hidden "Immediate" Discord Push Notification Option

Summery:

Have you ever wanted push notifications on your phone while being active on desktop? With this script you are able to do just that. I began searching for a solution to this issue after I had missed several messages due to Discord being active on my PC. I thought I would post the solution that I found here so that others having the same issue can benefit from it.

How to use:

  1. Press Ctrl+Shift+I to open DevTools.
  2. Go to the Console tab.
  3. Paste the following code and press enter:
@wraithy
wraithy / playcount.lua
Last active September 19, 2024 04:40
Adds the ability to track the play count of media in VLC
FileName = "play_count.csv"
playcountfile = ""
lastplay = 0
playcount_list = nil
lastupdated = nil
function save2(tbl, filename)
vlc.msg.info("Saving play counts to file: " .. filename)
local file, err = io.open(filename, "w")
if not file then