Skip to content

Instantly share code, notes, and snippets.

View jjohnson5253's full-sized avatar
👽

Jake Johnson jjohnson5253

👽
View GitHub Profile
@ghostrider-05
ghostrider-05 / discord_app_protocols.md
Last active April 15, 2025 12:37
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
@PsychoPast
PsychoPast / AccountPublicService.java
Created October 11, 2019 15:29 — forked from Amrsatrio/AccountService.java
some epic/fortnite endpoints
package com.tb24.fn.network;
import com.google.gson.JsonObject;
import com.tb24.fn.model.DeviceAuth;
import com.tb24.fn.model.ExchangeResponse;
import com.tb24.fn.model.ExternalAuth;
import com.tb24.fn.model.GameProfile;
import com.tb24.fn.model.LoginResponse;
import com.tb24.fn.model.QueryExternalIdMappingsByIdPayload;
import com.tb24.fn.model.VerifyResponse;
@Amrsatrio
Amrsatrio / AccountService.java
Last active March 25, 2025 03:01
some epic/fortnite endpoints
package com.tb24.fn.network;
import com.google.gson.JsonObject;
import com.tb24.fn.model.account.*;
import retrofit2.Call;
import retrofit2.http.*;
import java.util.List;
import java.util.Map;
@v1c77
v1c77 / route-screen.applescript
Last active December 13, 2024 10:41
rotate display using applescript, tested on Mac os High Sierra(10.13)
--
-- Created by: v1c77
-- Created on: 2018/7/21
--
-- DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
-- Version 2, December 2004
-- Copyright (C) 2020 v1c77
-- Everyone is permitted to copy and distribute verbatim or modified
@thomasantony
thomasantony / greyscale.py
Created April 12, 2017 21:22
A Python script for batch converting images to greyscale
"""Batch convert images to greyscale [by Thomas Antony].
Install dependencies:
pip install pillow docopt
Note: If you do not provide an output path, the generated files will be saved
in a folder named "Converted"
Usage:
greyscale.py <in_path> [<out_path>]