惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
博客园 - 叶小钗
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
Last Week in AI
Last Week in AI
罗磊的独立博客
量子位
Jina AI
Jina AI
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
IT之家
IT之家
美团技术团队
雷峰网
雷峰网
爱范儿
爱范儿
S
SegmentFault 最新的问题
小众软件
小众软件
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Revamped Proof for Finish-Up-A-Thon
Bello Bambo · 2026-05-27 · via DEV Community

This is a submission for the GitHub Finish-Up-A-Thon Challenge

What I Built

My first commit on Proof started on July 28, 2025 as a decentralized learning management system on EduChain.
It solves the problem of unreliable or easily altered academic records by putting key learning actions like course enrollment, exam creation, submissions, and scores on-chain.

Proof means a lot to me because it reflects my interest in building real education tools and exploring blockchain architecture to make learning systems more transparent, trustworthy, and useful for students and tutors.

Demo

The Comeback Story

Previously, Proofs' user experience was not the best. The app had the core idea working, but tutor and student flows were kind of confusing to new users, navigation was not really clear, and exam/course actions were not well separated by role and grading/scoring was not accurate.

I improved the frontend so tutors and students now get clearer flows: tutors can create courses, create exams, upload or generate questions,
and manage questions in batches, while students can enroll, take exams, view past questions, and i added a feature that enable students use AI to get explanations on an answer after they have submitted or taken the exam.

On the smart contract side, I cleaned the LMS(Learning Management System) contract by removing unused storage and unwanted exam timing logic, making mappings private, adding safer getters, storing student answers, adding getMyExamCorrection(), restricting submission views to lecturers, and updating tests, deployment files, package scripts, and the ABI.

My Experience with GitHub Copilot

GitHub Copilot helped me move faster throughout the update. It supported fixes like removing the old exam start/duration flow, adding student
answer correction logic, updating tests and deployment files, and verifying the contract. On the frontend, it helped me consume the new
contract functions, update role-based tutor/student flows, improve registration/navigation, and connect course, exam, enrollment, and question upload features.

Few Places I used Github Copilot:

Smart Contract Address

Before:

After(Revamped) :

Frontend

Before:

After(Revamped):

Live Project: https://edu-hacks-fe.vercel.app/
Github Repo: https://github.com/bellobambo/edu-hacks-fe