Build 2.0.4 / Local Execution Only

Deterministic
Deadline
Tracking.

A Progressive Web App for tracking job application deadlines with automatic notifications and company watchlist management.

v2.0.4 · Windows x64 · Portable
notifyy.exe — local_interface

Add Opportunity

COMPANY
ROLE / ID
URI (OPTIONAL)
YYYY-MM-DD
Track Opportunity

Watchlist

ENTITY NAME
Add
NVIDIA 2 OPPS
Microsoft 1 OPP
Active Deadlines
Software Engineer II GOOGLE
0d 14h 22m 20s
APPLIED
Frontend Developer MICROSOFT
4d 08h 15m 00s
APPLIED
Applied / Pending
Systems Architect GOOGLE
12d 01h 45m 00s
Expired / Ignored
Data Scientist ANTHROPIC
EXPIRED

System Specifications

Entity Watchlist

Persistent tracking logic. Monitors opportunity frequencies per entity with integrated filtering parameters.

Date-Only Resolution

Eliminates time-entry friction. Deadlines automatically compile to 11:59:59 PM end-of-day absolute timestamps.

Algorithmic Alerts

Notification scaling: 15+ days triggers 72h intervals, logarithmically shifting to 1h intervals at T-minus 24h.

Air-Gapped Storage

100% localized data persistence. Zero cloud dependency. Eliminates external database vector vulnerabilities.

System Architecture

Notifyy executes as a portable application leveraging a Python backend wrapped via PyInstaller, serving a static Progressive Web App (PWA) directly to the localized hardware port.

01
Backend Daemon
Python localized server execution. Manages process persistence and registry hooks for auto-start capabilities.
02
Frontend PWA
HTML/CSS/JS stack utilizing Service Worker caching algorithms and native Notification API bridging.
03
Build Pipeline
PyInstaller compiler formatting source into a onefile, windowed executable for zero-dependency deployment.
Terminal — deployment_tree
# File Structure Topology
notify/ (this repository)
├── Notifyy.exe # ⭐ Standalone executable (ready to run!)
├── notifyy.py # Python source code
├── build.ps1 # Automated build script
├── README.md # Complete documentation (this file)
├── QUICKSTART.md # Quick start guide
├── VERIFICATION.md # Technical verification report
├── BUILD_COMPLETE.md # Build & implementation details
├── .gitignore # Git ignore rules
└── web/ # Web application files (bundled in exe)
├── index.html # UI with companies section
├── app.js # Logic with v2.0 features
├── styles.css # Enhanced dark theme
├── service-worker.js # Offline support
└── manifest.json # PWA manifest
C:\> _

Deployment Protocol

End-User Execution

No installation required. Fully portable.
  1. Download and extract the src directory package.
  2. Navigate into the extracted folder.
  3. Execute Notifyy.exe to initialize the local daemon.
  4. Authorize OS-level notification privileges when prompted via UI.
Download EXE

Developer Compilation

Python environmental dependency required.
  1. Clone repository: git clone https://github.com/s2sofficial/notifyy.git
  2. Execute runtime environment directly: python notifyy.py
  3. Compile absolute binary payload: pyinstaller --noconfirm --onefile --windowed --add-data "notify\web;web" --icon="notify\web\icons\icon-192.png" --name="Notifyy" notify\notifyy.py
View Repository