产品设计
产品动态、设计趋势、用户体验
共 1474 篇 · 第 23/74 页
Jamboree
Multiplayer synthesizer Discussion | Link
Nintendo announces new product revisions in Europe with replaceable batteries
Faster Builds with Elm 0.19.2
submitted by /u/wheatBread [link] [留言]
BrowserAct Hit #1 on Product Hunt - Why 629 Builders Voted for a BrowserAct That Gets Stuck
👋 Hey there, Tech Enthusiasts! I'm Sarvar, a Cloud Architect who loves turning complex tech problems...
9 Best Keyboards (2025), Tested and Reviewed
Whether you’re looking to boost your productivity or your Fortnite stats, these are the top keyboards for the job.
What Happens When Everyone Can Build Apps But Nobody Understands Them?
Alright, real talk moment. Last week I watched someone with zero coding background build a fully...
How Palestinians Are Building a Digital Archive That Can’t Be Erased
Distributed backups, cyber resilience, and a half-million records are preserving Palestinian history beyond any single building or border.
Zoho Tables
Smarter way to manage work and data. Discussion | Link
LiveDemo
Open-source alternative to Storylane, Navattic, and Arcade Discussion | Link
Building relationships with customers through support didn't turn out as hoped
Glideo
Screen recordings that edit themselves Discussion | Link
Cursed circuits #5: capacitance multiplier
Understanding B-Tree Indexes in PostgreSQL: A Comprehensive Guide– Part 1
Jim Keller's startup is building a factory to mass-produce small chip fabs
How Bending Spoons built a $23B tech empire from struggling brands
Installing A/UX 1.1 like it's the 90s
Missing network configuration on fresh Ubuntu Server offline installation
Installing Ubuntu Server 24.04 LTS in an offline mode (no LAN cable or WiFi connected) leaves you with an unmanaged network interface which requires manual configuration post-install. The interface enp4s0 is unmanaged by systemd-networkd and also the service itself is disabled. NOTE: This guide applies to Ubuntu server. On Ubuntu desktop you have the NetworkManager service installed and the steps would be different. To fix the problem follow the steps below: Create a Brand New Netplan Configuration File Look into /etc/netplan . You will probably see the dir is empty. This means the installer completely gave up on configuring the network and didn't create any profiles. Create a new file, e.g. vim /etc/netplan/01-netcfg.yaml . Paste the following configuration network : version : 2 renderer : networkd ethernets : enp4s0 : dhcp4 : true This makes the interface managed by networkd instead of the desktop NetworkManager. Fix permissions The new file needs to be readable only by root so fix it's permissions chmod 600 /etc/netplan/01-netcfg.yaml . Enable network service Enable the network service and make it start on boot: systemctl enable systemd-networkd systemctl start systemd-networkd Run netplan Finally, we need to tell Ubuntu to use our new configuration and activate the network netplan generate netplan apply Network should be up! ip a
Zig: All Package Management Functionality Moved from Compiler to Build System
submitted by /u/Either_Collection349 [link] [留言]