SShortSingh.
Back to feed

Developer Builds Free Telegram-Based Budget Tracker to Replace Subscription Apps

0
·1 views

A developer frustrated with paid budgeting apps built a personal finance tool called 'Ek Ek Paisa ka Hisab' that runs entirely through Telegram at zero monthly cost. Users log expenses by sending plain-language messages to a Telegram bot, which parses the text using Python and stores transactions in a Supabase Postgres database. The system generates a self-contained HTML dashboard file that works offline without any login or server connection. A custom parser handles Indian currency notations such as 'k' for thousands and 'l' for lakhs, and classifies entries as income or expenses using keyword matching. The bot supports multiple users, keeping each person's financial data fully isolated by scoping all queries to the sender's unique chat ID.

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 ·

OneToolBox offers free browser-based developer utilities with no account required

A developer has launched OneToolBox, a free collection of web-based utilities available at onetoolbox.dev. The platform includes tools for JSON processing, YAML validation, hash generation, text diffing, image editing, and file conversion. All operations run directly in the browser, meaning no user files or data are sent to a server and no account registration is needed. The project is still under active development, and the creator is seeking honest feedback from developers who regularly use such utilities. Suggestions on missing tools or areas for improvement are especially welcomed.

0
ProgrammingDEV Community ·

Kubernetes Secrets Use Base64 Encoding, Not Encryption, Experts Warn

A technical explainer published on DEV Community highlights a widespread misconception among Kubernetes users: Secret objects store data as Base64-encoded text, not encrypted values. Base64 is a binary-to-text encoding scheme that is instantly reversible without any key, meaning credentials stored this way remain effectively in plaintext. Without additional configuration, Kubernetes Secrets sit in the etcd datastore with no cryptographic protection. Developers are advised to treat any Secret YAML file as plain credentials and avoid committing it to version control. Real security requires layered measures such as etcd encryption at rest via a KMS provider, Sealed Secrets, SOPS, or external secret stores like HashiCorp Vault, combined with strict RBAC controls.

0
ProgrammingDEV Community ·

Developer Works on Mobile Performance Tuning for New Game Ahead of Launch

A developer is spending the weekend optimizing their newly built game for mobile platforms. While the game runs smoothly on desktop, performance on mid-range and low-end Android devices needs improvement. The focus is on reducing resource demands to ensure a better experience for mobile users. The developer aims to push the game to mobile platforms once the optimization work is complete.

0
ProgrammingDEV Community ·

Why Your Claude Code Custom Skills Fail to Trigger and How to Fix Them

A development team manager who has used Claude Code daily for months found that custom skills — built to automate tasks like code review and debugging — often fail to activate not because of flawed instructions, but because of poorly written descriptions. In Claude Code, a skill's description acts as a routing rule, and the full instructions only load after the description matches a user's request. The author found that descriptions must include the casual, abbreviated phrases developers actually type — such as 'review this' or 'fix it' — rather than formal language. He also recommends specifying the types of inputs that trigger a skill, such as pasted code or stack traces, and defining clear boundaries to prevent overlapping skills from conflicting. His practical test: make five natural, real-world requests in a fresh session and only ship the skill if it fires on at least four of them.