Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
2022e70
Added a Windows Backup script with GUI
RandyNorthrup Sep 21, 2025
3862759
layout changes to buttons
RandyNorthrup Sep 23, 2025
d803dd6
import cleanup
RandyNorthrup Sep 23, 2025
2b97fbd
Added Readme to Windows Backup
RandyNorthrup Sep 23, 2025
7e2fa9c
Updated Readme
RandyNorthrup Sep 23, 2025
469bbb1
Added windows launcher
RandyNorthrup Sep 23, 2025
566860a
Change script to run windows_backup.py instead of launcher.py
RandyNorthrup Sep 23, 2025
1dc3467
Add GitHub Actions workflow for Python application
RandyNorthrup Sep 23, 2025
e42b91c
Changed from xcopy to shutil and glob
RandyNorthrup Sep 23, 2025
1bb7732
Automatic folder checking every 5 seconds Tooltips explain disabled …
RandyNorthrup Sep 23, 2025
8178bdf
Update FontArt.py
RandyNorthrup Sep 24, 2025
3c952f6
Update FontArt.py
RandyNorthrup Sep 25, 2025
0e657c0
Update FontArt.py
RandyNorthrup Sep 25, 2025
3e7116e
minor bug in file organizer. Added De-Dupe to Windows Backup
RandyNorthrup Sep 25, 2025
9a436b8
Added the move mouse script into Windows backup
RandyNorthrup Sep 25, 2025
c6b3fbb
Included File Organizer into Windows Backup. Named the window S.A.K. …
RandyNorthrup Sep 25, 2025
5d66721
feat: Add core utilities, constants, and consolidate imports
RandyNorthrup Sep 25, 2025
08c1f65
refactor: Update MainWindow layout, state, and keep-awake feature
RandyNorthrup Sep 25, 2025
05e342b
feat: Implement multi-threaded BackupWorker and new LicenseScanWorker
RandyNorthrup Sep 25, 2025
18a118e
Feature: Add License Key Scanner; Enhance Deduplication; Refactor Dup…
RandyNorthrup Sep 25, 2025
c4e0389
Auto stash before rebase of "main"
RandyNorthrup Sep 25, 2025
6b1fbed
new icon from png tool and changes to sak tool
RandyNorthrup Sep 25, 2025
186acf4
Rename project from Windows Backup Application to Swiss Army Knife Ut…
RandyNorthrup Sep 25, 2025
50791ac
Revise README with new features and installation info
RandyNorthrup Sep 25, 2025
bf3c4a4
Created MD to PDF/TXT tool w GUI
RandyNorthrup Sep 25, 2025
b79b0ea
added requirements and readme to the things I created
RandyNorthrup Sep 25, 2025
cc069dc
addad svg support
RandyNorthrup Sep 25, 2025
4f97ceb
Removed files
RandyNorthrup Sep 26, 2025
f353cff
Update README.md
RandyNorthrup Sep 26, 2025
24aab72
Renamed This more appropriately
RandyNorthrup Sep 26, 2025
1dbb3ba
Renamed
RandyNorthrup Sep 26, 2025
523f6f6
Some tweaks to snake game Initial commit of rrsct.py trying to make t…
RandyNorthrup Sep 27, 2025
b5d2c24
New tool Clone Website to Docker
RandyNorthrup Sep 27, 2025
9ca4aba
Cross platform qol update
RandyNorthrup Sep 27, 2025
2ac941b
aded rate and download limits updated readme
RandyNorthrup Sep 27, 2025
e7f3a55
updates to smb transfer tool removed webcloner from scripts
RandyNorthrup Sep 28, 2025
c912b5d
Update README.md
RandyNorthrup Sep 28, 2025
6c6a1b9
Update README.md
RandyNorthrup Sep 29, 2025
34eb63a
gui and upgrade
RandyNorthrup Sep 29, 2025
34908e1
Update __init__.cpython-313.pyc
RandyNorthrup Oct 3, 2025
3e51c88
Enhanced RRSCT tool and created modern Qt GUI for background/foregrou…
RandyNorthrup Dec 2, 2025
616320b
Add PDF Editor and Signer with intelligent detection and click-to-place
RandyNorthrup Dec 2, 2025
2a84ab0
Remove selfie image
RandyNorthrup Dec 2, 2025
0c53c2a
Add Advanced Search, WiFi QR Code Generator, and MacOS App Removal Ca…
RandyNorthrup Mar 4, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
446 changes: 446 additions & 0 deletions Advanced Search/README.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Advanced Search/assets/chevron_down.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions Advanced Search/assets/chevron_up.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Advanced Search/assets/icon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions Advanced Search/assets/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions Advanced Search/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
"""
Advanced Search Tool - Main Launcher
Entry point for the application
"""
import sys
import os

# Add src directory to path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src'))

# Import and run main application
from src.main import main

if __name__ == '__main__':
main()
6 changes: 6 additions & 0 deletions Advanced Search/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
PySide6>=6.6.0
Pillow>=10.0.0
PyPDF2>=3.0.0
python-docx>=1.0.0
openpyxl>=3.1.0
mutagen>=1.47.0
2,056 changes: 2,056 additions & 0 deletions Advanced Search/src/main.py

Large diffs are not rendered by default.

Loading