Comments

This profile is from a federated server and may be incomplete. Browse more on the original instance.

PlexSheep, to linux in TIL

Pretty sure it’s not. I saw something on this topic a few weeks ago but can’t quite remember. Iirc, it was a term in an early early OS, where a bit in memory was the privilege but and could be set or unset by turning a real wheel on the computer. This Stück with some people developing UNIX, so they called the wheel group wheel, but none of them are sure who came up with this.

Of course, this is just hearsay.

PlexSheep, to linux in Filesystem mirroring: best backup tool?

I didn’t know it had a GUI, very nice.

PlexSheep, to linux in Cyber hunt - A technical adventure for Unix fans!

Thanks :) I’m currently “too slow” haven’t figured out what to do there yesterday evening.

PlexSheep, to linux in 3rd party discord client?

The flatpak crashes for me since some time sadly. I’m just using a basic chromium browser and their (shitty) webapp

PlexSheep, to linuxmemes in Songs about Vim

Dont dare to insult the pinnacle of text editing.

PlexSheep, to selfhosted in 13 Feet Ladder

So ist this an http proxy? I don’t quite get it.

PlexSheep, to linuxmemes in Wayland vs X11 be like

The whole point of using Linux is the freedom that we can use what we want. Don’t play down other DEs you might not like, because the variety is what makes our environment amazing.

PlexSheep, to datahoarder in Any way to bulk download full images from a website and not their thumbnails?

Downloadthemall let’s you set some filters, namely file size. If you set it high enough, at least thumbnails and other stuff will not be downloaded.

PlexSheep, to linux in Is the Windows Subsystem for Linux worth it?

From what I hear the only thing that doesn’t work is reaction emojis in meetings.

PlexSheep, to piracy in India blocks GitHub, after lobbying done by copyright trolls

What’s the point of a local git server? If you’re after that why not just use a regular Git repo?

PlexSheep, to piracy in India blocks GitHub, after lobbying done by copyright trolls

Git LFS exists, not sure how it works technically, but it’s what the AI people use for AI model VCS.

PlexSheep, to piracy in What is the easy way to stream movies/series hosted on file hosting/sharing sites?

Does this do anything else than being a Fileserver? I already have SFTP and smb to choose from.

PlexSheep, to linuxmemes in Wayland vs X11 be like

You’re right, I didn’t think of that. Cinnamon sadly is X11 for now.

PlexSheep, to linux in ADWSteamGTK makes steam look more inline with GTK

Apperently it’s just an installer for some steam skin? I didn’t even know skins were a thing. It looks pretty amazing through.

PlexSheep, to linux in Navigating around in your shell

What I use to automatically extend stuff like ls … to ls …/…/…/…


<span style="font-weight:bold;color:#a71d5d;">function </span><span style="font-weight:bold;color:#795da3;">expand-dots</span><span style="color:#323232;">() {
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">local </span><span style="color:#323232;">MATCH
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">if </span><span style="color:#62a35c;">[[ </span><span style="color:#323232;">$LBUFFER </span><span style="font-weight:bold;color:#a71d5d;">=~ </span><span style="color:#183691;">'(^| )...+' </span><span style="color:#62a35c;">]]</span><span style="font-weight:bold;color:#a71d5d;">; then
</span><span style="color:#323232;">        LBUFFER</span><span style="font-weight:bold;color:#a71d5d;">=</span><span style="color:#183691;">$</span><span style="color:#323232;">LBUFFER</span><span style="color:#183691;">:fs%</span><span style="color:#0086b3;">...</span><span style="color:#183691;">%../..%
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">fi
</span><span style="color:#323232;">}
</span><span style="color:#323232;">
</span><span style="font-weight:bold;color:#a71d5d;">function </span><span style="font-weight:bold;color:#795da3;">expand-dots-then-expand-or-complete</span><span style="color:#323232;">() {
</span><span style="color:#323232;">    zle expand-dots
</span><span style="color:#323232;">    zle expand-or-complete
</span><span style="color:#323232;">}
</span><span style="color:#323232;">
</span><span style="font-weight:bold;color:#a71d5d;">function </span><span style="font-weight:bold;color:#795da3;">expand-dots-then-accept-line</span><span style="color:#323232;">() {
</span><span style="color:#323232;">    zle expand-dots
</span><span style="color:#323232;">    zle accept-line
</span><span style="color:#323232;">}
</span><span style="color:#323232;">
</span><span style="color:#323232;">zle -N expand-dots
</span><span style="color:#323232;">zle -N expand-dots-then-expand-or-complete
</span><span style="color:#323232;">zle -N expand-dots-then-accept-line
</span><span style="color:#323232;">bindkey </span><span style="color:#183691;">'^I'</span><span style="color:#323232;"> expand-dots-then-expand-or-complete
</span><span style="color:#323232;">bindkey </span><span style="color:#183691;">'^M'</span><span style="color:#323232;"> expand-dots-then-accept-line
</span>

(for zsh)

  • All
  • Subscribed
  • Moderated
  • Favorites
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #