SShortSingh.
Back to feed

MUET Student Builds Open-Source Results Portal With AI Parsing and Zero Hosting Cost

0
·2 views

A student at Mehran University of Engineering and Technology (MUET) in Jamshoro built an independent online portal to address the university's reliance on static PDF result sheets. The platform, hosted at muetresults.vercel.app, offers instant semester results, CGPA calculations, batch rankings, and an academic calendar. It uses Google Gemini 1.5 Flash to parse official result PDFs into structured JSON data, which is then committed to a GitHub-tracked CSV database and deployed via Vercel's CI/CD pipeline. The frontend is built with vanilla JavaScript, achieving a Largest Contentful Paint of under 0.6 seconds with no layout shifts. The project is open-source and operates at zero hosting cost using a fully pre-rendered, serverless GitOps architecture.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

DEV Community Publishes Part 7 of State-Owned ICS Cybersecurity Control Matrix

DEV Community has released Part 7 of an ongoing series focused on cybersecurity frameworks for state-owned industrial control systems (ICS). The installment presents an Implementation Control Matrix designed as an internal checklist for organizations managing critical national infrastructure. Each control entry specifies an owner, enforcement points, required evidence, review frequency, exception process, and residual risk statement. Key areas covered include critical process identification, OT asset inventory, network segmentation, vendor access controls, privileged identity management, and engineering workstation protection. The guide warns against common failure modes such as overly permissive firewall rules, undocumented devices, and corporate credential compromise leading to OT system access.

0
ProgrammingDEV Community ·

Three Python Design Patterns to Write Cleaner, More Scalable Code

A technical guide published on DEV Community explains how three core Python design patterns — Factory, Singleton, and Observer — can help developers write more maintainable and scalable code. The Factory pattern decouples object creation from usage, allowing new object types to be added without modifying existing logic across a codebase. The Singleton pattern ensures a class has only one instance, making it ideal for shared resources such as database connections or configuration managers. The Observer pattern supports event-driven architecture by letting objects react automatically to state changes elsewhere in an application. Together, these patterns address common pain points like repeated logic, fragile code structure, and difficulty scaling features over time.

0
ProgrammingDEV Community ·

Why Music Metadata Matching Fails: Lessons from a Missing Kesha Track

A music API failed to return results for Kesha's 2025 remix 'YIPPEE-KI-YAY (The Hosed Down Remix)' despite the track existing across Spotify, Apple Music, Deezer, and MusicBrainz. The problem was not missing data but a flawed matching layer that could not reconcile the same song stored with slight differences across databases. Issues included a trailing period in one source's title, Unicode typographic hyphens versus standard ASCII hyphens, and inconsistent casing and punctuation conventions. The fix involved a normalisation process that folds all strings into a canonical lowercase form before comparison, stripping punctuation and collapsing whitespace. The case highlights that music metadata reconciliation across providers is a non-trivial engineering problem driven by subtle, silent inconsistencies.