Skip to content

Instantly share code, notes, and snippets.

View Nbc66's full-sized avatar
🔨
HAMMER

Kerim Čamdžić Nbc66

🔨
HAMMER
View GitHub Profile
@Nbc66
Nbc66 / GItHub_status_to_discord_webhook.js
Created May 7, 2024 15:59
A Cloudflare Worker script to be used with statuspage.io websites that allow you to subscibe to updates using a webhook
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request))
})
async function handleRequest(request) {
// Verify request method
if (request.method !== 'POST') {
return new Response('Method Not Allowed', { status: 405 })
}
@Nbc66
Nbc66 / music_system.cpp
Last active April 15, 2021 12:22
Source Code for the music system for the main menu to be used in your source engine mod
#include "cbase.h"
#include "vgui_controls/SectionedListPanel.h"
#include "vgui_controls/ImagePanel.h"
#include "engine/IEngineSound.h"
#include "filesystem.h"
#include "icommandline.h"
#include "music_system.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"