• 1 Post
  • 16 Comments
Joined 1 year ago
cake
Cake day: June 25th, 2023

help-circle

  • Maybe their necklaces and earrings don’t adhere to OSHA regulations. I don’t know. Everyone has to use their own judgement when posting and I think it’s better to mark NSFW when in doubt, but there seems to be at least two different ways people use NSFW feature so sometimes the choice of using an NSFW tag might not make sense.



  • So even if someone came up with a system whereby they expected you to watch an ad before the power would flow, you could always just plug in and walk away. How are they going to know you’re physically there?

    How about a button located near the ad screen and speaker that you have to hold like at least 80% of ad duration. If you failed to reach 80% it would reset to 0 and show you another ad so you can try again.




  • I don’t understand why people think this is such a useful thing. Sure it has some good summaries but you can’t find all info there whereas man pages should have everything. It’s also good that tldr has examples but I think it’s something man should more often have too. So why would people rather use this than man?

    For example I often forget the order of pattern and file in grep. I can look it up easily in both man and tldr. I also forget what was the short option for recursion. Was it -r, -R or either or something else entirely? I can easily do a search on my pager to find the option in man but there’s only long option available in tldr. That’s Too Long Don’t Want to Type.





  • A ‘pager’ is a utility that takes a markup text (say, Roff) and displays that text, formatted, in the terminal. The first pager was nroff(1) for the aforementioned Roff, and you may still find nroff(1) on UNIX-based systems.

    Wouldn’t it be less or more (or most) that is the pager part and roff being the part that does formatting for terminal. As far as I understand roff does the runoff of the text file. It formats the text properly and inserts all the necessary escape codes for terminal. Then that can be piped to pager which shows the text page by page.

    Looks like an interesting project. Didn’t try it but looked into the source code and I think there was not really any keybindings similar to less. I suggest adding at least g, G, C-f and C-b.

    But would it be possible for this project to utilize external pager? That would make the development easier.