No idea. I personally didn’t like it. I felt the time based sorting was more accurate for me
I’ll be honest, I’m just here for the memes.
No idea. I personally didn’t like it. I felt the time based sorting was more accurate for me
I’ve been using McFly to do my history searching. It’s pretty good. I recommend changing the default sort from rank to time though
I was wondering why it was written in C++, but the FAQ already beat me to it.
Why build a new browser in C++ when safer and more modern languages are available?
Ladybird started as a component of the SerenityOS hobby project, which only allows C++. The choice of language was not so much a technical decision, but more one of personal convenience. Andreas was most comfortable with C++ when creating SerenityOS, and now we have almost half a million lines of modern C++ to maintain.
However, now that Ladybird has forked and become its own independent project, all constraints previously imposed by SerenityOS are no longer in effect. We are actively evaluating a number of alternatives and will be adding a mature successor language to the project in the near future. This process is already quite far along, and prototypes exist in multiple languages.
Glad to see they are open to using safer languages. C/C++ was great for its time, but we really need to move on from them.
Why does a virtual machine platform need to add support for different kernel versions? What changes are there in the kernel that affects how it interacts with the virtual hardware?
Commit 77a294d
Update maintainer and author info. The other maintainer suddenly disappeared.
Lmao, that’s putting it lightly.
The best you can do is use OSS software that has been battle tested. Stuff like OpenSSH and OpenVPN are very unlikely to have backdoors or major vulnerabilities currently being exploited. If you don’t trust something to not be vulnerable, you’re best to put it behind a more robust layer of authentication and access it only by those means.
I wanna use Rust to build mobile apps so bad. I don’t really know what I want to build, but I want to use Rust to do it
A backdoor is very distinct from a vanilla vulnerability. Heartbleed was a vulnerability, meaning the devs made a mistake in the code, introducing a method of attack. XZ was backdoored, meaning a malicious actor intentionally introduced a method by which he could exploit systems.
Both are pretty serious vulnerabilities, but a backdoor, especially introduced so high in the supply chain, would have been devastating had it not been caught so early.
RIP that one guy who relied on this bug. He’s gonna have to create a bookmark now, which will ruin his whole workflow.
As mentioned, binary test files makes sense for this utility. In the future though, there should be expected to demonstrate how and why the binary files were constructed in this way, kinda like how encryption algorithms explain how they derived any arbitrary or magic numbers. This would bring more trust and transparency to these files without having to eliminate them.
The Arch Wiki gives good tips on what environment variables to set to make sure that your GUIs are running with Wayland native and not XWayland. I have a Framework and I don’t have any blurry text issues, and I’ve done all the settings in this section.
pacman
is less intuitive to use than apt
, but after a while, you get used to it. I find it helpful to install tldr
, which gives you samples for any command you pass to it. The main thing I like about it is the speed and how you can do an upgrade in a single short command (pacman -Syu
), where as you need multiple in apt (apt update && apt upgrade
.
When in doubt though, Arch Wiki is your goto.
C is just crazy. You accidentally forget to put the bounds in a sorting function, and now you are root.
My slippery slope started with buying an old laptop off my company and deciding to install Ubuntu on it. Now all of my devices run Linux, I switched to Android with a FOSS ROM, degoogled myself in almost every way, and I run Nextcloud on an old laptop. Feels great to really own my devices and data.
Just a few shortcuts that may help:
docker ps
is an alias for docker container ls
As someone else suggested though, docker compose is probably best suited for this job, but hopefully this helps in other situations.
Ouch. I’m sorry you had to find out that way. But in the plus side, you’ll never forget.
For my home server, I use Restic and a cronjob to weekly take snapshots of all my services. It then gets synced to a Backblaze B2 bucket (at $6/TB/mo). It’s pretty neat, only saving the difference between the previous and current snapshot, removes older snapshots, and encrypts everything.