When you open a serverless website in your browser, it becomes a regular app.
pelya
- 0 Posts
- 164 Comments
pelya@lemmy.worldto
Programmer Humor@programming.dev•It's just C with two plus signs, how hard could it be?
4·13 days agoMore like garbage dispenser.
Pro C++ coders don’t use
delete, they callabort()
Justice for the 5.25" floppy disk! It had an actual hole inside, which would fit your finger! You could see it’s a disk and not a weird shaped square box, and you could hear it’s rotating.


That corner cutout is grossly exagerrated. In the actual floppy disk (which is also not floppy anymore) the cutout is tiny.
pelya@lemmy.worldto
Programmer Humor@programming.dev•Welsh or C standard library function?
53·1 month agohttps://man7.org/linux/man-pages/man3/mbsrtowcs.3.html
https://man7.org/linux/man-pages/man3/strxfrm.3.html
https://man7.org/linux/man-pages/man3/wcstold.3p.html
https://man7.org/linux/man-pages/man3/wcscoll.3p.html
wcsollin the picture is an error, unless it’s Welsh.
Plasma, with the taskbar on the side, and 15 virtual desktops.
pelya@lemmy.worldto
Linux@lemmy.ml•Can a server's eth & wifi share the same IP address?
2·2 months agoNope. The server receives UDP packet from WiFi and sends reply over Ethernet, which simply gets lost in your router. From the Linux side there’s no error, it sent the packet somewhere, and what happens next is your router’s problem.
pelya@lemmy.worldto
Linux@lemmy.ml•Can a server's eth & wifi share the same IP address?
6·2 months agoIt’s perfectly possible on Linux to have several network adapters with the same IP address, or several default routes.
Most server applications will listen to 0.0.0.0 address, which means all network interfaces. Any incoming TCP connection will remember it’s network interface, and the server will send responses to the same interface.
This will not work for UDP connections, and for outgoing TCP connections - they will always choose the network interface with the lowest metric, which you can print with
ip rcommand.This does not include advanced techniques like bridge or bonding or iptables routing - you need to run special commands in the terminal, which you cannot do just by clicking your mouse in system settings app.
Green paint will be extra $2000.
pelya@lemmy.worldto
Games@lemmy.world•Major Blow to Denuvo Because Pirates Just Ran Out of Games to Bypass as of April 2026English
71·3 months agoIs never connected to a network, public or private (always offline)
99% of all modern games won’t even start
pelya@lemmy.worldto
Linux@lemmy.ml•Can the GNU/ Linux Foundation Fork Android and Maintain it?
2·3 months agoAndroid uses mainline Linux kernel for several years already. Whatever drivers OEMs are using are provided as separate binaries.
pelya@lemmy.worldto
Linux@lemmy.ml•linux-android: turn any old Android phone into a Linux desktop or a smart home server
231·3 months agoIt’s an installer for Termux packages. You can do the same thing manually in Termux shell, if you know the names of packages you are installing.
And yes, Termux uses Debian apt package manager.
pelya@lemmy.worldto
Programmer Humor@programming.dev•I don't even know what it exactly wants to be
10·4 months agoThey still make an acceptable FTP server for backing up your huge tarballs.
Github is more involved, you need to create a release and then attach files to it. With sf.net you jist do a FTP upload.
DNS is pronounced ‘hosts’ because it was originally one big text file.

It’s these things. Notice how the thread is smaller than the shaft. You always need to drill a pilot hole, otherwise the thread won’t bite into the wood. The thread is also pretty tight, so screwing it two-three times in the same hole is enough to strip the wood in the hole, so it can be pulled out with tweezers with almost no resistance. It’s also slotted, so if you press too hard your screwdriver will slip out. And if you screw too tightly, the head will rip off, because it’s a mild steel.
Or you just hammer it in.




TreeView is designed as an afterthought. Some manager at MICROS~1 was like ‘ah yes we need an expanding nested list widget by tomorrow’ and they mutilated text edit box to draw text lines that expand when you click them. It does not have keyboad focus. It can only be operated with a mouse. It does not have shadow or raised widget borders. It has black text on white background, while every other widget has Windows Gray background.
The proper UI would be a separate button for each label, like multiple hierarchical combo boxes.