

One way could be to grep your history, then compare the matches against a distro source?
It’ll be tedious if it’s lots, but might be a solution if you don’t have a backup.
One way could be to grep your history, then compare the matches against a distro source?
It’ll be tedious if it’s lots, but might be a solution if you don’t have a backup.
Your initial response got peoples’ backs up because of its dismissive tone and (it seemed to me, as you hadn’t provided context) apparent advocacy for web-based tools like O365 or GSheets.
Many office application users wouldn’t consider vim as an “office application”, as they have their word processing app, their spreadsheet app, their email app, their chat app, their file explorer/manager, maybe something other than Notepad as a text editor, etc, and don’t really know much beyond some of what each of them can do.
The fact that vim (or Emacs or vim/nvim with plugins, or LazyVim or Doom Emacs) can do all of those things would blow many minds.
But the setup effort and learning curve is still there, and also requires that they have sufficient permissions/policy to be able to install things.
I have a 2015 Shield. Best device I’ve ever had, and haven’t ever had to factory reset it.
My main recommendation - in case it applies to you - is to not run any server software on it (eg. Plex). It’s a solid client device, but has never had what it takes to run server services.
I think it has plenty of life left in it, so a factory reset might be worthwhile. Also note that the drive in yours may be well past its best.
This is what FAFO in public looks like. Gold!
You may be right, but I worked around this using https://wiki.archlinux.org/title/NetworkManager#Network_services_with_NetworkManager_dispatcher
I added the CIFS shares to my fstab with the _netdev
option and created /etc/NetworkManager/dispatcher.d/30-nas-shares.sh containing (got the WiFi UUID using nmcli con show
):
#!/bin/sh
WANTED_CON_UUID="UUID-OF-MY-WIFI"
if [ "$CONNECTION_UUID" = "$WANTED_CON_UUID" ]; then
case "$2" in
"up"|"vpn-up")
mount -a -t cifs
;;
esac
fi
This waits for my WiFi to come up, ensures it’s my home WiFi, and then mounts my shares.
There are probably other and better ways to do it, but it works.
lol… no. There’s a difference between Approximate and Precise location information: 3 sq.km vs 3m. Think suburb vs room.
With location services enabled, you’re providing the latter.
Google wants everyone to have location services permanently enabled, gotcha.
I encounter this mostly with manga. (I’ll not rehash what others have said).
FWIW, and in that use case, I deal with it by renaming x5 to x5.0 so it will sort before x5.5. And then usually put both into an x5 directory and then zip that into a CBZ.
TIL that version appears to be on the AUR: MicroEMACS/PK 4.0.15 customized by Linus Torvalds.
Last updated in 2014, it probably has serious cobwebs now. Even the upstream hasn’t been touched in 6 years.
Had no idea about this. Very useful, thanks!
I second this, as it’s my use case.
Providing you lay out each note correctly with appropriate frontmatter, Dataview’s DQL and DataviewJS give you all the SQL-like functionality you could want.
Plus a load of useful functionality beyond a plain DB.
TIL this is a thing. I started doing that over 30 years ago with SLS and Slackware when that was the only choice.
This was pre-PnP (also pre-JPEG!), so you had to know all the addresses, IRQs, DMA info, etc, of your hardware or you’d get… unexpected results. make
it and they will come…
After countless distros and flavours over the years, I still use Debian for servers and now use EndeavourOS for desktop/laptops.
If using Firefox:
I use a bunch of others, but the above are my bare minimum.
Don’t believe anyone who tells you that one extension does everything.
This is, sadly, accurate. Telling someone to use an OS/platform that isn’t connected with a brand they recognise seems to send many people into a tailspin.
I’ll refrain from the obvious “They Live” cynicism…
deleted by creator
When I’m outside my home network, I rely on Tracker Control (installed via F-Droid) for most traffic. And the usual uBlock Origin and such for my mobile Firefox browser.
Thank you. My laptop is EndeavourOS+KDE6 - which is solid - and I’ve spent today preparing to nuke my gaming desktop PC (Ubuntu and an Nvidia RTX card) to rebuild it with Endeavour tomorrow, and the only doubt I had was Wayland and Nvidia with Lutris/Heroic/Proton gaming.
high cpu usage by just moving the mouse.
This sounds like co-operative multi-tasking on a single CPU. I remember this with Windows 3.1x around 30 years ago, where the faster you moved your mouse, the more impact it would have on anything else you were running. That text scrolling too fast? Wiggle the mouse to slow it down (etc, etc).
I thought we’d permanently moved on with pre-emptive multi-tasking, multi-threading and multiple cores… 🤦🏼♂️
My Endeavour laptop got it today. Couple of tweaks and it was running perfectly.
Funny you mention desktop: I’ve been waiting for Plasma 6 before rebuilding my Ubuntu desktop with Endeavour. Didn’t want to jump the gun, find out that it impacts gaming performance, and then have to rebuild back again. :) Guess I have a desktop to rebuild now…
Can’t speak to Fedora specifically, but most package managers let you configure the number of concurrent download threads it will use. Most are 3-4 it seems. Finding yours and setting it to 1 will probably do exactly what you’re asking.
Another option is to set it to only download the files, then install manually once they’re local to you. The options for this differ (eg. when installation order matters), so an RTFM is worth the time spent.