Skip to content

Instantly share code, notes, and snippets.

View cipherwithadot's full-sized avatar
💸
It's funny how dumb you are

cipher. cipherwithadot

💸
It's funny how dumb you are
View GitHub Profile
import os
import names
import cfscrape
class ShortlyAI():
def __init__(self):
self.session = cfscrape.create_scraper()
self.token = None
@ghostrider-05
ghostrider-05 / discord_app_protocols.md
Last active May 14, 2024 16:45
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
@wh1tney
wh1tney / deploy-static-site-heroku.md
Last active May 25, 2024 22:28
How to deploy a static website to Heroku

Gist

This is a quick tutorial explaining how to get a static website hosted on Heroku.

Why do this?

Heroku hosts apps on the internet, not static websites. To get it to run your static portfolio, personal blog, etc., you need to trick Heroku into thinking your website is a PHP app. This 6-step tutorial will teach you how.

Basic Assumptions