Author: drweb

While AI tools are increasingly used in development, they should enhance rather than replace human input. Developers must shift from merely writing code to orchestrating and validating AI-generated code. This ‘spec coding’ emphasizes creating specifications that guide both AI and human efforts. Infrastructure must support this transition, with safeguards like reliable build pipelines and automated security scans. Ultimately, AI is a tool to aid developers, but the nuanced responsibilities of design, security, and performance remain firmly in human hands, ensuring responsible and effective use.

Read More

Safari has support for where a normal ☑️ checkbox turns into a toggle. You don’t strictly need the browser support to get the look, as it’s weirdly easy to replicate (based on idea from Richard Keizer). But Thomas Steiner has a more comprehensive polyfill if you want it to behave more exactly correctly, respecting writing-mode and accent-color and such.

Read More

In this article, you will learn how to list, configure, enable, disable, and troubleshoot network interfaces in Linux using 15 useful ifconfig commands with practical examples. ifconfig (Interface Configuration is a utility for system/network administration in Unix/Linux operating systems used to configure, manage, and query network interface parameters via the command-line interface or in system configuration scripts. The ifconfig command is used for displaying current network configuration information, setting up an IP address, netmask, or broadcast address to a network interface, creating an alias for a network interface, setting the hardware address, and enabling or disabling network interfaces. Update: The…

Read More

I had this (bad) idea. It’s related to popovers and anchor-positioned menus. I love this pairing: with only HTML and CSS we can make a button that opens/closes anything we want. A tooltip or a menu is a wonderful use-case. This isn’t a terribly difficult thing to do, but, you have to remember a bunch of stuff and put certain unique values on certain elements exactly. Remember the right command attribute value on the button Put a unique id on the menu. Match up the commandfor attribute on the button to that id. Make sure the button has an unique…

Read More