Skip to content

Instantly share code, notes, and snippets.

View itsnebulalol's full-sized avatar

Dominic Frye itsnebulalol

View GitHub Profile
{
"cacheTimeInMillis": 5000,
"runtimes": [
{
"version": "8.0.432",
"vendor": "Eclipse Temurin",
"os": "LINUX64",
"href": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u432-b06/OpenJDK8U-jdk_x64_linux_hotspot_8u432b06.tar.gz"
},
{
@itsnebulalol
itsnebulalol / 01_PatreonVideoDownloader.md
Last active September 6, 2024 02:05
Download every video from a Patreon profile

Patreon Video Downloader

Experimentation with downloading every single video from a Patreon profile. (Windows only)

Disclaimer

By using this script, you are responsible to figure out the creator's copyright information. Assume that you are not allowed to redistribute downloaded files unless specifically told.

This script requires you to be subscribed to the user you want to download videos from.

@itsnebulalol
itsnebulalol / 01_VerizonAPI.md
Last active January 25, 2025 15:05
Reverse engineered Verizon API

Verizon API

  • Reversed using Firefox Network Inspector
  • Python POC to see usage data is attached

secure.verizon.com

@itsnebulalol
itsnebulalol / tokyo-night.css
Created April 2, 2024 21:41
Discord Tokyo Night
/**
* @name Tokyo Night
* @author Nebula
* @authorId 574669003755356162
* @version 1.0.0
* @description Tokyo Night theme from VSCode
*/
.theme-dark {
--header-primary: var(--text-normal);
@itsnebulalol
itsnebulalol / nixos-oracle.md
Created March 6, 2024 22:33
Install NixOS on an Oracle Cloud VM

NixOS on an Oracle Cloud VM

This gist was made for my own reference, but feel free to follow along. You should use your own Nix flake.

Booting NixOS

Since NixOS is not an official image for use on Oracle Cloud VM's, and users have reported that uploading the NixOS image does not work, we will use kexec to boot the installer.

sudo -i
@itsnebulalol
itsnebulalol / nixos-apple.md
Created February 17, 2024 02:52
NixOS install on Apple Silicon with LUKS

NixOS with LUKS on Apple Silicon

This gist was made for my own reference, but feel free to follow along. Just note that not all partitions may be the same, and you should use your own Nix flake.

Partitioning

Prep

sgdisk /dev/nvme0n1 -n 0:0 -s
@itsnebulalol
itsnebulalol / blocklist.txt
Created January 26, 2024 23:37
Block lists
||analyticsengine.s3.amazonaws.com^$important
||affiliationjs.s3.amazonaws.com^$important
||metrics.mzstatic.com^$important
||edge.activity.windows.com^$important
||advice-ads.s3.amazonaws.com^$important
||google-analytics.com^$important
||adservice.google.com^$important
||hotjar.com^$important
||static.hotjar.com^$important
||api-hotjar.com^$important
@itsnebulalol
itsnebulalol / LaViewAPI.md
Last active January 19, 2025 17:20
LaView NVR API (non-Hikvision rebranded)

LaView NVR API

Since there is no documentation on the API for non-Hikvision rebranded LaView NVRs, I decided to figure it out myself.

RTSP

found in Port Configuration under Network settings

rtsp://{user}:{pass}@{ip}:{port}/ch{channel}/{stream}

@itsnebulalol
itsnebulalol / ips.txt
Created August 24, 2023 22:07
Spam IPs I have blocked
183.136.225.5
101.68.211.2
183.136.225.45
183.136.225.44
@itsnebulalol
itsnebulalol / discord.css
Last active February 5, 2025 02:42
Discord extra CSS
/* Hide new member badge */
div[class*="newMemberBadge"] {
display: none !important;
}
/* Hide "I'm new to Discord, say hi!" */
[class^=wumpusWrapper] {
display: none;
}