Skip to content

Instantly share code, notes, and snippets.

View ApxSnowflake's full-sized avatar

Ahmed Essam ApxSnowflake

  • Alexandria, Egypt
View GitHub Profile
@ApxSnowflake
ApxSnowflake / pr-status-report.md
Created April 1, 2026 00:46
PR Status Report — ready-for-review PRs, deployment readiness, recommended priorities (2026-04-01)

Open PRs with ready-for-review Label — Full Status Report

Generated: 2026-04-01 | Deployment branch: deployment/2026-03-30-tier1-tier2


Tier 1: High Impact Bugfixes (not on staging — merge to master next)

PR Title Priority Ticket Pipeline Staging Deploy Issues
@ApxSnowflake
ApxSnowflake / staging-deploy-priorities-2026-03-30.md
Created March 30, 2026 16:23
Staging Deploy Priorities — 2026-03-30: Tickets ranked by impact/risk for merge to master

Staging Deploy Priorities — 2026-03-30

Analysis of tickets in Push to Staging and Review - Staging ZenHub pipelines, ranked by impact-to-risk ratio. Goal: identify what to merge to master first for maximum value with minimum risk.


Tier 1 — High Impact, Minimal Risk (deploy first)

PR Issue Title +/- Files Why deploy
import sqlite3
try:
db = sqlite3.connect('db.sqlite3')
cursor = db.cursor()
print "Sign Up now !"
name = raw_input("Your Name: ")
email = raw_input("Your Email: ")
password = raw_input("Your Password: ")
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Developed By Lil'Essam
import optparse
import zipfile
import atexit
from threading import Thread
def extract_it(zipfile, password):
try: