this post was submitted on 04 Jul 2025
58 points (98.3% liked)

Ask Lemmy

33082 readers
1873 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.


6) No US Politics.
Please don't post about current US Politics. If you need to do this, try !politicaldiscussion@lemmy.world or !askusa@discuss.online


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 2 years ago
MODERATORS
 

Mine is using the arrow keys to navigate typed text while writing and editing. It helps speed things up, versus having to move your hand to the mouse to navigate.

Use the Up and Down Arrows to move/jump vertically.

Left and Right Arrows to move/jump horizontally.

Combine Left or Right Arrow with Shift to be able to select text. Use Up or Down Arrow with Shift to quickly select whole/nearly whole sections of text.

Combine Control with Left/Right Arrow to jump whole words to more quickly move to where you want to type.

top 31 comments
sorted by: hot top controversial new old
[–] undefined@lemmy.hogru.ch 3 points 53 minutes ago

Set up three WireGuard network interfaces on a VPS then accept traffic from your end devices to route through the three double hop VPN tunnels to a country with better privacy laws. Install an ad and tracking blocking DNS server to block all nefarious hostnames as well as more granular blockers for your browsers.

[–] _number8_@lemmy.world 1 points 28 minutes ago

hosts file block twitter/reddit/facebook/etc on all my computers. i guess i haven't done it on my phone because i can't be bothered [and regardless of how much i need a hit, i'm not gonna sit there on my phone browser for hours anyway]

In a browser I right click on a bookmark folder to open all the bookmarks in separate tabs. I usually do this with my social sites.

To update Fedora "sudo dnf upgrade". I used to use the software store but that often requires a reboot.

Windows+L to lock the computer.

I always have my vpn, terminal window, and qbittorrent start at boot.

[–] Bahnd@lemmy.world 8 points 2 hours ago

Microsoft has never fixed the sticky keys replacement cheese to unlock a PC you have physical access to. Ive done it up to W10, never tested it on W11.

  1. Get a Windows recovery USB.

  2. Boot into the recovery menu and open the command prompt.

  3. Navagate to system32 and make a copy of the cmd.exe file (for a backup)

  4. Copy the sticky_keys.exe and have it overwrite cmd.exe, then reboot.

  5. On the login screen, smash the shift key until the command prompt appears and for some reason (because no user has logged in yet) it has admin permissions, so you can reset local passwords.

  6. Once your logged in as a local admin, copy the backup of cmd.exe back so noone is none the wiser (except the security software that knows you messed with something)

[–] moe93@lemmy.dbzer0.com 13 points 3 hours ago (2 children)

To navigate to the previous folder

cd -

To reissue the previous command with a prefix. For example:

cat /root/.ssh/authorized_keys # Will fail without privilege

sudo !!

To use the argument of the previous command. For example:

tac ~/.ssh/authorized_keys # oops, misspelled cat

cat !$

[–] beastlykings@sh.itjust.works 1 points 25 minutes ago

cd -... Wow, I can't believe I never knew about this. I should read more man pages.

!! Is useful too, never knew. Thanks!

[–] owenfromcanada@lemmy.ca 4 points 2 hours ago (1 children)

Oh dang, I never knew about the !! shortcut. I especially like it for the sudo example, because when it complains I don't have permission, I can basically yell at it.

[–] davidgro@lemmy.world 4 points 1 hour ago

I've seen posts suggesting adding the following to your .bashrc:

alias fuck='sudo $(history -p \!\!)'
[–] Caffeinated_Sloth@lemmy.world 15 points 4 hours ago (2 children)

Windows+L every time I leave my desk.

[–] notfromhere@lemmy.ml 2 points 1 hour ago* (last edited 1 hour ago)

⌃⌘Q for those of us on MacBooks

[–] DmMacniel@feddit.org 3 points 3 hours ago (1 children)

That's not even a life hack. That's literally policy, at least where I work at :)

[–] davidgro@lemmy.world 3 points 1 hour ago

Not everyone knows the keyboard shortcut though. I bet you can find people hunting for it using the mouse every time.

[–] some_guy@lemmy.sdf.org 7 points 3 hours ago

Keyboard shortcuts for everything. Mousing to a menu is a waste of time in any app you use daily.

[–] hansolo@lemmy.today 11 points 4 hours ago

Find a Linux distro you like and install it instead of Windows.

Use LibreOffice, not MSOffice

Ditch Google, Apple, Meta, and Microsoft.

Tech walled gardens are insane asylums. Leave them.

[–] owenfromcanada@lemmy.ca 3 points 3 hours ago

Add Home/End buttons into your work flow to jump to the start or end of lines. Works with holding Shift as well.

For me, one of the biggest things was removing all the visual noise from my desktop. Disable notifications, disable or hide unused taskbar elements, and on Windows, get rid of the patently awful ticker thing that lives on the taskbar. Disable window animations.

I did the same thing on my phone, too, including disabling pop-up notifications, toasts, floating bubbles, and animations. My brain is much happier for it.

[–] Max_P@lemmy.max-p.me 14 points 4 hours ago (1 children)

Keyboard shortcuts in general.

  • Alt + left right (previous/next page in browsers)

  • Windows + 1 (2, 3, ...) on Windows and KDE focuses the window at that position in the taskbar

  • Alt + Tab to switch windows (hold shift to go backwards)

  • Windows + Tab to switch windows within the same application (like, all browser windows if you're in a browser)

  • Alt + 1 (2, 3, ...) on Windows/Linux usually selects the corresponding tab

  • Ctrl + Tab to cycle through tabs like Alt-Tab does for windows (hold shift to go backwards)

  • In most browsers or things with a URL/go to bar, Ctrl+L will focus that. No need to click the address bar, Ctrl+L, example.com, Enter.

  • In Discord and Slack, you can press Ctrl+K to open a box to quickly type a channel/DM name to go to it quickly

  • If you have them, the Home/End/PageUp/PageDown keys are actually pretty useful. Press Home instead of scrolling all the way back up.

  • F1 is usually help

  • F2 is usually rename

  • F3 is usually search

[–] solsangraal@lemmy.zip 2 points 4 hours ago* (last edited 4 hours ago)

F6 - goto and highlight the URL bar in a browser

ctrl + F5 - clear cache and reload the tab

F11 - super full screen browser

[–] zxqwas@lemmy.world 11 points 4 hours ago (2 children)

Vim takes your keyboard shortcuts to the extreme. If you can be bothered to learn it.

[–] Psaldorn@lemmy.world 2 points 1 hour ago

It's well worth learning, you can use vim motions In lots of apps (or they have vim plugins) and even some websites will let you navigate with hjkl and search with / etc

There used to be a web based vim game to help you learn, vim tutor maybe?

Any time I'm forced to select text with a mouse it feels like a massive ball ache.

Don't get me started on editing text on an iPad, they have gone out of their way to make selection and editing, like changing a URL, a total nightmare.

[–] owenfromcanada@lemmy.ca 4 points 3 hours ago

And for those who can't be bothered, opening vim is like the digital version of a finger trap.

[–] pleasestopasking@reddthat.com 6 points 4 hours ago* (last edited 4 hours ago) (1 children)

Custom autocompletes/corrects. Just figure out a non-word (i.e. something that you wouldn't want to use without autocorrecting) that's easy to remember and set it up frequently used snippets of text. Some examples:

  • meetnow - my zoom meeting link
  • booktime - a link to my calendly
  • frequent sentences or blurbs I use in emails (e.g. thanks so much, let me know if i can help with anything else sorta stuff)
  • nicknames for different frequently used hex codes
  • galert/yalert/redalert populate a styled HTML snippet to make a green, yellow, or red div that I can then just pop my content into
  • lots of other little HTML snippets like that
  • group nicknames to populate a list of email addresses (like an Outlook contacts group but you can use it outside of Outlook)

Anyway there are a ton of things I use it for, those are just a few examples. Saves me a lot of time.

You can do this on Macs at a system level, on Windows you can do it on some programs but it seems to have to be set up on each one which is worthless.

[–] 200ok@lemmy.world 1 points 14 minutes ago

That's so smart!

I set up autocompletes for my phone number (and a few other personal links) but these are amazing.. thanks for sharing

[–] QuadratureSurfer@lemmy.world 4 points 4 hours ago

On Windows you can open up a WSL shell or PowerShell session directly to the folder path you want.

Hold 'Shift' then right click anywhere inside of a directory and you will get an option to "Open PowerShell window here" as well as to "Open Linux shell here".

[–] Kolanaki@pawb.social 4 points 4 hours ago

Pretty much anything has a free alternative. Often times, with a better UI or more features with far less bloat than the top commercial product.

[–] FlashMobOfOne@lemmy.world 4 points 4 hours ago (2 children)

Turn it off when you're not using it. Save on energy.

[–] Brkdncr@lemmy.world 2 points 3 hours ago

Modern computers don’t use much energy when they sleep.

[–] tburkhol@lemmy.world 2 points 4 hours ago

Even 50W, 24/7, is 36 kWh/month. $3 where I live; $12 in CA.

[–] otacon239@lemmy.world 4 points 4 hours ago

I’ll have to upload it here when I get back into work on Tuesday, but I wrote a PDF guide for the most common Windows and Mac shortcuts that I consider to be the essentials.

[–] slazer2au@lemmy.world 2 points 3 hours ago

Notepad++
Ctrl click to place to type the same things once on those spots.
Ctrl and alt together will allow vertical highlights so if you have to modify the middle of several lines.
Edit menu -> line operations to sort by several pre determined methods.

[–] BlameThePeacock@lemmy.ca 3 points 4 hours ago

The Multiple desktops feature is critical for me. It allows you to use one computer for multiple functional concepts simultaneously without visually interfering with each other or constantly needing to close and re-open things. It's available in both windows and linux (which had it first) for a long time now.

I keep my personal stuff on one desktop, I keep my work stuff on a second desktop, and I keep my gaming stuff on a third desktop. Then I just flip between them based on what I'm currently doing.

That way I'm not getting things confused with each other, or distracted by something personal while I'm working.

Ctrl+Windows+Left/Right for Windows is the shortcut to flip back and forth between them. Or you can also see it on the Windows+Tab menu as well (along the bottom below the apps)

The only downside to this is that you need more RAM than normal, because it's not uncommon for me to have dozens (sometimes north of 100) of browser tabs, and a half dozen applications from office to video games open simultaneously between the different desktops. I would suggest running 32gb at a minimum, and 64gb is a lot better.

[–] Toes@ani.social 4 points 5 hours ago

I've discovered over the years that these 2 commands can fix a lot of problems for a windows computer. And there’s no practical downside unless you're running pirated software or exotic OS mods.

DISM /Online /Cleanup-Image /RestoreHealth

sfc /scannow

As with any advice online, its critical to research and understand what you're doing. :D