SShortSingh.
Back to feed

CS Student Builds AI Civic Issue Mapper to Track and Route Public Complaints

0
·3 views

A computer science student developed a web platform called AI Civic Issue Mapper, allowing citizens to report civic problems such as potholes, garbage dumping, and broken streetlights using photos, GPS data, and descriptions. Built with Python Flask, MySQL, and JavaScript, the system automatically routes complaints to relevant departments, detects duplicates, and tracks resolution status. The project also includes a public transparency page where anyone can view complaint statistics without logging in, and was successfully deployed online. Throughout development, the student encountered real-world challenges including backend-database integration, authentication, email delivery, and deployment inconsistencies that tutorials had not prepared them for. The experience highlighted how building a functional application requires understanding how all system components interact, not just knowing individual technologies in isolation.

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 ·

How to Remove Chrome's 'Deceptive Site Ahead' Warning and Request a Review

Google's Safe Browsing system triggers a full-page red 'Deceptive site ahead' warning in Chrome when it detects phishing or social-engineering content on a website, such as fake login forms or scareware popups. The warning is distinct from the 'Not Secure' address bar label and the 'This site may be hacked' Search Console alert, each of which has different causes and fixes. In many cases, the flagged content was not placed by the site owner but was injected by an attacker who compromised the site. To resolve the issue, site owners must first identify and remove the offending content — including checking for hidden malicious files, especially on WordPress installations. Once the content is cleaned up, a review request must be submitted through Google Search Console to have the warning lifted.

0
ProgrammingDEV Community ·

Developer builds local CI/CD runner to cut push-wait-fix debug cycles

A developer has released Zetken CI/CD Studio, a local-first tool designed to let engineers build, validate, and debug CI/CD pipelines on their own machines before pushing to remote CI systems. The tool runs as a standalone binary on Windows, Linux, and macOS, and includes a browser-based UI for managing pipelines, logs, and run history. Zetken supports features such as parallel jobs, artifact handling, secret masking, and Docker image build steps. It also includes a Migration Assistant that can convert supported subsets of GitHub Actions, Azure DevOps, and Jenkins pipelines into the Zetken format. The project is currently in beta with a 60-day free local trial, and the developer is actively seeking feedback from CI/CD practitioners.

0
ProgrammingDEV Community ·

Dev Tutorial Urges Builders to Verify APIs and Config Before Coding Next.js RAG Apps

A technical guide published on DEV Community advises developers to validate all stack components before building a Retrieval-Augmented Generation (RAG) application using Next.js, Qdrant, and OpenAI. The article argues that unverified configuration details, API specs, and security patterns should never be treated as production-ready facts. Rather than providing copy-paste code, the guide recommends creating an evidence register documenting every technical claim with official sources, version numbers, and review dates. It also stresses defining project outcomes in measurable business terms before selecting models or designing database schemas. The only formally verified learning resource cited in the piece is DeepLearning.AI's beginner course on vector databases, instructed by Tim Tully and estimated at one hour and 23 minutes.