// writing

Notes and write-ups

everything tagged frontend

tag map
2 min

Monitoring your website with Upptime

Unexpected downtime can lead to significant issues if it goes unnoticed for long periods of time. Implementing automated monitoring ensures administrators are alerted immediately when a website becomes unresponsive. This approach leverages existing version control infrastructure to provide continuous status checks and public reporting dashboards.

api frontend today-i-learned
2 min

Novus just got better (again)

The latest release of Novus introduces a new command designed to streamline administrative tasks by enabling passwordless sudo access with security constraints. This update also adds improved operational transparency, helpful UI feedback for long-running processes, and support for quick domain definitions. These enhancements aim to refine the development workflow for those managing local server environments.

api novus frontend
5 min

Novus v0.0.4 released 🚀

This release of the local HTTPS proxy tool introduces a web-based dashboard and improved service management to simplify development workflows. The update resolves configuration validation issues and refines how background services are monitored and restarted. Users can now enjoy a more robust interface and better error handling when setting up local development domains.

api novus frontend
2 min

Introducing Novus - a local HTTPS proxy for better developer experience

Managing multiple local development services often requires complicated handling of ports, DNS settings, and SSL certificates. This utility simplifies that process by automatically configuring local proxies to serve development projects over custom HTTPS domains. It reduces environment configuration overhead, allowing for a more consistent and production-like experience during local testing.

api novus frontend
8 min

LaundryAlert - never forget your laundry again

Forgetful habits regarding completed laundry cycles led to the development of a custom monitoring system that triggers push notifications on mobile devices. By combining a light-sensitive sensor on a washing machine with a control board, a solution was created to detect status changes and alert users remotely. This project combines basic electronics with custom software to solve a frequent household annoyance.

iot nodejs api
11 min

Server-sent events or how ChatGPT typing animation works

Real-time communication enables modern web applications to push data to users instantly instead of waiting for traditional request-response cycles. This article explores how Server-Sent Events facilitate streaming content directly from a server, powering features like the typing effect seen in chat interfaces. It provides a practical overview of implementing these streams to improve user experience in web applications.

api nodejs frontend