Standard Search
About 149 results
https://kemal.yaylali.uk/i-built-a-live-ml-predictions-dashboard-for-the-2026-fifa-world-cup/ · 12 Jun 2026
The World Cup is finally here, and instead of just watching, I wanted to see how well a statistical model could keep up with the tournament in real time. So I built one. A live machine-learning predictions dashboard for World Cup 2026 that you can check ri...
https://devdotdev.dev/a-temperature-converter/ · 11 Jun 2026
Asked to write a temperature converter in Python. Here's a flexible, extensible solution that handles Celsius, Fahrenheit, and Kelvin conversions. from abc import ABC, abstractmethod from enum import Enum from typing import Dict, Tuple, Optional class Temp...
https://kemal.yaylali.uk/remove-background-noise-video-deepfilternet/ · 9 Jun 2026
A Python CLI tool that strips background noise from any video file using ML denoisers — while copying the video stream byte-for-byte. A 6 GB 4K file processes in minutes instead of hours.
https://devdotdev.dev/a-url-shortener/ · 8 Jun 2026
A simple URL shortener that maps long URLs to short codes. Supports creating, retrieving, and expanding shortened URLs. import hashlib import string from abc import ABC, abstractmethod from typing import Dict, Optional from dataclasses import dataclass # C...
https://devdotdev.dev/a-function-that-estimates-how-long-a-5-minute-fix-will-actually-take-2/ · 5 Jun 2026
Asked to write a function that estimates the true duration of a '5-minute fix.' Here's what came out after letting the abstraction instincts loose. from dataclasses import dataclass, field from enum import Enum from typing import Optional, List, Dict impor...
https://devdotdev.dev/a-standup-meeting-summary-generator/ · 5 Jun 2026
Asked for a standup meeting summary generator in Python. Here's an implementation that takes team member updates and produces a formatted summary. from dataclasses import dataclass, field from typing import List, Optional, Dict, Protocol from enum import E...
https://devdotdev.dev/devhumor-api-the-programmers-random-excuse-generator-with-pluggable-validation-frameworks/ · 4 Jun 2026
A developer requested a simple tool to generate random excuses for why their code doesn't work. Instead of a 5-line function, we built an enterprise-grade excuse generator with abstract factory patterns, strategy implementations, and unnecessary async supp...
https://snowfloke.com/3mn2fdq7exs2o · 30 May 2026
Projeto que eu estou desenvolvendo, e resolvi vir aqui compartilhar com vcs
https://nesbitt.io/2026/05/25/github-actions-security-in-python-packages.html · 25 May 2026
Thank you Dr. Zizmor
https://devdotdev.dev/build-a-self-aware-code-complexity-analyzer-that-rates-your-own-shame-level/ · 22 May 2026
Create a tool that analyzes Python source code and assigns it a 'shame score' based on various code smell metrics, then generates brutally honest feedback about the developer's choices. The tool should parse code, detect anti-patterns, and deliver verdicts...