Skip to content

Instantly share code, notes, and snippets.

View Jxck-S's full-sized avatar
🏠
Working from home

Jack Sweeney Jxck-S

🏠
Working from home
  • Student
  • Orlando Florida
View GitHub Profile
@Jxck-S
Jxck-S / GitBackdate.md
Last active April 17, 2025 20:59
A simple PowerShell script that brings your old school code projects to GitHub as if they were developed back in the day. It uses each file’s last modified date to retroactively create commits with accurate historical timestamps.

🕰️ GitBackdate

A simple PowerShell script that brings your old school code projects to GitHub as if they were developed back in the day.
It uses each file's last modified date to retroactively create commits with accurate historical timestamps.

Perfect for:

  • Archiving old projects
  • Preserving original file history
  • Looking like a time-traveling developer
@Jxck-S
Jxck-S / RoomBotUCF.md
Created April 16, 2025 20:10
A history of reserving study rooms in the UCF library with bots.

RoomBotUCF

Introduction

Starting in Fall 2023, we created a bot to reservering study rooms in the UCF library. It was created in Python with Selenium/Chrome. The bot used multiple students logins to support more then four hours a day. RoomBot1.0 can be found here RoomBot1.0

RoomBot 2.0

Eventually in 2024, I realized that Selenium/Chrome is unreliable, so i re-created the bot as RoomBot2.0 which useds requests, and replicated what the UI/JavaScript would do on the real website. RoomBot2.0 can be found here RoomBot2.0

RoomBot2.0 had an improved algorithm which preplanned what rooms should be reserved, with 18 valid student logins, we ended up reserving 3 study rooms, all day every day of the week.

@Jxck-S
Jxck-S / README.md
Last active April 16, 2025 19:00
A guide to downloading videos from SharePoint/OneDrive repositories that have disabled the download functionality. This method uses browser inspection tools and FFmpeg to extract video content from SharePoint manifests.

SharePoint Video Download Guide

Overview

This guide explains how to download videos from SharePoint or OneDrive when the download functionality has been disabled. The process involves identifying the video stream URL and using FFmpeg to download it.

Methods to Get the Video URL

Method 1: Chrome Extension (Recommended)

  1. Install the SharePoint Video Downloader Extension
  2. Navigate to the SharePoint video you want to download
  3. Click the extension icon to generate the download URL and FFmpeg command
@Jxck-S
Jxck-S / toggle_ipv6.sh
Created December 9, 2024 02:37
IPv6 Toggle Script, Disables or enables IPv6 system-wide
#!/bin/bash
# IPv6 Toggle Script
# Disables or enables IPv6 system-wide
function disable_ipv6() {
echo "Disabling IPv6..."
sudo sysctl -w net.ipv6.conf.all.disable_ipv6=1
sudo sysctl -w net.ipv6.conf.default.disable_ipv6=1
sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=1
@Jxck-S
Jxck-S / coordinate_tools.py
Created February 14, 2024 20:37
Python Coordinate Tools.
def standardize_longitude(longitude):
while longitude < -180:
longitude += 360
while longitude > 180:
longitude -= 360
return longitude
def standardize_latitude(latitude):
while latitude < -90:
@Jxck-S
Jxck-S / tmobile_phone_num_gen.py
Created January 23, 2024 14:16
Generate TMobile Phone Numbers and Verify for, reasons you may need to know a TMobile number...
import requests
import json
import random
def generate_random_number_string(length):
numbers = '0123456789'
return ''.join(random.choice(numbers) for _ in range(length))
phone_number = "13529993108"
print("--------------------------------------")
@Jxck-S
Jxck-S / the9central_vlan_scan.json
Created November 9, 2023 02:57
The 9 at Central in Orlando FL, VLAN scan.
{
"detected_networks": [
{
"vlan_id": "default",
"ip_address": "100.110.152.81",
"domain": "w-194.orld.fl.wtsky.net"
},
{
"vlan_id": 6,
"rx_bytes": 23426,
@Jxck-S
Jxck-S / VirginAtlanticIFELogger.py
Created July 3, 2023 19:50
Logs flight data from the IFE API's on a Virgin Atlantic Flight
import requests, json, time
from datetime import datetime
l_flight = {'info': {}, 'updates': []}
log_keys = ['groundSpeedKnots',
'headWindSpeedKnots',
'mach',
'pitch',
'roll',
'airSpeedKnots',
'altitudeFeet',
@Jxck-S
Jxck-S / VIR136.json
Created July 3, 2023 19:48
Logging of inflight data from Virgin Atlantic Flight on Board from the IFE API. VIR136 on G-VLIB
{
"info": {
"departBaggageId": "MCO",
"departureId": "KMCO",
"departureLat": 28.429443359375,
"departureLon": -81.3088912963867,
"destBaggageId": "LHR",
"destinationId": "EGLL",
"destinationLat": 51.4667015075684,
"destinationLon": -0.449999988079071,
@Jxck-S
Jxck-S / nostr_relays.csv
Last active February 4, 2025 15:41
A list of popular/free nostr relays that my plane-notify program can use for posting.
URL FAILS
wss://nostr.mutinywallet.com 0
wss://relay.snort.social 0
wss://nostr.wine 0
wss://nos.lol 0
wss://relay.damus.io 0