Trying a switch to tal@lemmy.today, at least for a while, due to recent kbin.social stability problems and to help spread load.

  • 0 Posts
  • 3 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle
  • Reddit had the ability to have a per-subreddit wiki. I never dug into it on the moderator side, but it was useful for some things like setting up pages with subreddit rules and the like. I think that moderators had some level of control over it, at least to allow non-moderator edits or not, maybe on a per-page basis.

    That could be a useful option for communities; I think that in general, there is more utility for per-community than per-instance wiki spaces, though I know that you admin a server with one major community which you also moderate, so in your case, there may not be much difference.

    I don’t know how amenable django-wiki is to partitioning things up like that, though.

    EDIT: https://www.reddit.com/wiki/wiki/ has a brief summary.


  • I remember this story from about twenty years back hitting the news:

    https://www.theregister.com/2001/04/12/missing_novell_server_discovered_after/

    Missing Novell server discovered after four years

    In the kind of tale any aspiring BOFH would be able to dine out on for months, the University of North Carolina has finally located one of its most reliable servers - which nobody had seen for FOUR years.

    One of the university’s Novell servers had been doing the business for years and nobody stopped to wonder where it was - until some bright spark realised an audit of the campus network was well overdue.

    According to a report by Techweb it was only then that those campus techies realised they couldn’t find the server. Attempts to follow network cabling to find the missing box led to the discovery that maintenance workers had sealed the server behind a wall.


  • tal@kbin.socialtolinuxmemes@lemmy.worldExpert
    link
    fedilink
    arrow-up
    0
    ·
    1 year ago

    I’m on the emacs side of things, but knowing at least the bare minimum of vim is handy, because I have run into into systems (usually very small systems like routers or something) where some vi variant is available and nothing else is. Though as systems get bigger, it has become more the norm to have at least nano also available.

    I’d know at least this:

    • i to enter insert mode. Then you can edit as in a non-modal editor.

    • Esc to exit insert mode and go back to normal mode.

    • h, j, k, l move left, down, up, and right. The fingers under your right hand on a QWERTY keyboard.

    • / to start a regex search

    • % and then SRC/REPLACEMENT to do a regex replacement.

    • :q to exit without saving changes.

    • :wq to save and exit.

    That’s enough to perform a couple of small edits or something if need be.