Skip Navigation
Announcing: frog-protocols for wayland
  • Basically the Matrix Spec Change Proposal system, I like it. Opens the floor to more players, gives tool authors a list of protocols they could choose to build on, and hopefully compositors will choose to adopt or adapt one of these protocols before writing their own.

  • Has anyone else ever seen an SSH key/fingerprint thing string together an actual word? Or how about a curse word? XD
  • I know that "Vanity Addresses" are a common thing for onion sites, and there are tools which generate tons of keys looking for prefixes. I haven't seen such a tool for ssh host keys though.

  • Whats your go-to naming convention?
  • I put newlines in my filenames to break both CLI tools and Windows filesystems

  • The Open Source Computer Science Degree
  • Taking courses which involve subjects that you will likely never encounter in the workforce is a thing in every discipline. Most engineers don't need to manually solve differential equations in their day jobs, they just need to know that they exist and will often require numerical solutions.

    Getting your hands dirty with the content provides a better understanding when dealing with higher level concepts.

  • Anyone knows if it's possible to color command line commands as you type them (kind of like an editor)?
  • zsh-syntax-highlighting

    There's also a fork called fast-syntax-highlighting, I use it.

  • Which one???
  • manually call the others

    Yeah, most distros will set up source chains to make things nicer for users.

  • Which one???
  • Yeah, I'd write this as a single update script with options to update vimplugins or update pkg or update all.

    I see that you want it to be a function so you can get the chdir as a side effect, but mixing that with updating doesn't make sense to me.

  • Which one???
  • When in doubt, ~/.zshrc. It's the right choice 99% of the time. Otherwise, there's a chance you fuck up scripts you've installed which assume no shell options have been changed in non-interactive contexts.

  • Which one???
  • What kind of functions do you write which you share between your scripts? Generally if I'm wanting to reuse a non-trivial function, I extend the functionality of the first script instead.

  • Which one???
  • Select the color which matches the steps before filenames ((non-)login and (non-)interactive), then follow that arrow the rest of the way. There's more colors in Bash because Bash makes a distinction between remote and local shells.

    Another way to look at the same data for Zsh (note: $ZDOTDIR will be used instead of $HOME if it's defined at any step along the way):

    File neither interactive login both
    /etc/zshenv x x x x
    ${ZDOTDIR:-$HOME}/.zshenv x x x x
    ${ZDOTDIR:-$HOME}/.zprofile x x
    ${ZDOTDIR:-$HOME}/.zshrc x x
    ${ZDOTDIR:-$HOME}/.zlogin x x
    ${ZDOTDIR:-$HOME}/.zlogout x x

    One confusion on the Bash side of the diagram is that you see branching paths into ~/.profile, ~/.bash_profile and ~/.bash_login. Bash will use for ~/.bash_profile, ~/.bash_login, and ~/.profile, in that order, and execute only the first one that exists and is readable.

  • New Release Audacity 3.6
  • Optional crash reporting was merged. Most of the backlash in the PR is about the significant dependencies (Google's BreakPad) which were pulled in with it.

    However, by default Audacity isn't built with it, you need to specify a CMake with the URL to send data to. No distros that I know of enable reporting.

  • RegreSSHion: Remote Code Execution Vulnerability In OpenSSH Server
  • Just make sure you read the news (restart sshd)

  • Is there an image viewer like nsxiv, but with native Wayland support?
  • Judging purely on the dependencies I see in pacman, nsxiv depends on imlib2, which pulls in a lot of libraries, while imv links to a subset of those libraries directly.

  • How big is your desk?
  • CSS is turing conplete.

  • Can I remove a git repo without resorting to `rm -rf` ?
  • What about adding the flags last?

    rm deletethisrepo -rf
    
  • It's easier to remember the IPs of good DNSes, too.
  • You could still NAT between v6's though.

  • how does this piece move?
  • Like a normal horsey, but the square it leaves behind remains on fire, destroying the next piece to land on it.

    Only the most recent square it was on remains on fire.

  • New 2024 POSIX Standards specify features for sh and standard shell utilities
  • IMO the NUL-delimited options are by far the biggest win for shell scripting. $' ' will be the most commonly used addition, but "$(printf '...')" was always an option before. You don't really have an alternative read -d ''.

  • Minor text rendering bug
  • Strange, I don't see this behavior on my device. Not sure what information would be relevant to debugging this though.

  • Release fish 3.7.0 (released January 1, 2024)
    github.com Release fish 3.7.0 (released January 1, 2024) · fish-shell/fish-shell

    This release of fish includes a number of improvements over fish 3.6.4, detailed below. Although work continues on the porting of fish internals to the Rust programming language, that work is not i...

    Release fish 3.7.0 (released January 1, 2024) · fish-shell/fish-shell

    This release of fish includes a number of improvements over fish 3.6.4, detailed below. Although work continues on the porting of fish internals to the Rust programming language, that work is not included in this release. fish 3.7.0 and any future releases in the 3.7 series remain C++ programs.

    Notable improvements and fixes

    • Improvements to the history pager, including:
    • The history pager will now also attempt subsequence matches (#9476), so you can find a command line like git log 3.6.1..Integration_3.7.0 by searching for gitInt.
    • Opening the history pager will now fill the search field with a search string if you’re already in a search (#10005). This makes it nicer to search something with and then later decide to switch to the full pager.
    • Closing the history pager with enter will now copy the search text to the commandline if there was no match, so you can continue editing the command you tried to find right away (#9934).
    • Performance improvements for command completions and globbing, where supported by the operating system, especially on slow filesystems such as NFS (#9891, #9931, #10032, #10052).
    • fish can now be configured to wait a specified amount of time for a multi-key sequence to be completed, instead of waiting indefinitely. For example, this makes binding kj to switching modes in vi mode possible.
    • The timeout can be set via the new fish_sequence_key_delay_ms variable (#7401), and may be set by default in future versions.
    0
    Raspberry Pi - Introducing: Raspberry Pi 5
    www.raspberrypi.com Introducing: Raspberry Pi 5! - Raspberry Pi

    Announcing Raspberry Pi 5, coming in late October: over 2x faster than Raspberry Pi 4, featuring silicon designed in-house at Raspberry Pi.

    Introducing: Raspberry Pi 5! - Raspberry Pi
    267
    After a multi-year hiatus, an org transfer with new admins and maintainers, jq 1.7 has been released!
    github.com Release jq 1.7 · jqlang/jq

    After a five year hiatus we're back with a GitHub organization, with new admins and new maintainers who have brought a great deal of energy to make a long-awaited and long-needed new release. We'r...

    Release jq 1.7 · jqlang/jq

    Check out the newest version of everyone's favorite^[citation needed] command line json processing tool!

    Highlights include significant speed improvements (>10x on some of my workloads), new flags, new builtins, and a litany of bugfixes.

    3
    How do you shell expand your variables and why?

    x-post from !programming@programming.dev: https://programming.dev/post/2165136

    4
    What are the most inscrutable lines of $SHELL you've ever written?

    I'm sure some of you have absolute monstrosities of sigils (I know I do, in my .zshrc alone). Post them without context, and try and guess what other users's lines are. If you want to provide context or guess, use the markdown editor to spoiler-tag your guesses and explanations!

    1
    jq-shell: Functions for bringing json structures useful to shell
    github.com GitHub - xPMo/jq-shell: Functions for making json structures useful to shell

    Functions for making json structures useful to shell - GitHub - xPMo/jq-shell: Functions for making json structures useful to shell

    GitHub - xPMo/jq-shell: Functions for making json structures useful to shell

    This came out of playing around with curl and the Lemmy API. I wanted a repeatable way to declare a bunch of shell parameters from a json object, so I wrote a jq module! Take a look at the README for examples, or once you install, run

    shell source <( curl 'https://programming.dev/api/v3/community?id=267' | jq -r 'import "shell" as shell; .community_view | shell::param' )

    Currently this project only provides a param function, and only supports Bash and Zsh. If I think of other useful helper functions, I may add them to the project.

    This uses _ as a default prefix for each parameter. This is so things like {"PATH": "..."} generate typeset _PATH='...' and don't mangle your $PATH, for example. The prefix can be customized by passing in a string: param("mypfx").

    Before declaring a 1.0, I'm planning on expanding shell support, and have the function determine how to output using the the $SHELL parameter:

    ```fish

    This does not work (yet!)

    eval (curl $URL | jq -r ' import "shell" as shell; "fish" as $SHELL | .community_view | param ') ```

    Always up for feedback!

    0
    [ysh] (2/3) Sketches of YSH Features

    YSH, or the shell formally known as oil, is touted as a possible upgrade path from Bash.

    This is the first in a three-part series of posts re-introducing the language.

    1. Reviewing YSH
    2. Sketches of YSH Features (you are here)
    3. YSH, Narrow Waists, and Perlis-Thompson Problems (Not yet released)
    0
    [ysh] (1/3) Reviewing YSH

    YSH, or the shell formally known as oil, is touted as a possible upgrade path from Bash.

    This is the first in a three-part series of posts re-introducing the language.

    1. Reviewing YSH (you are here)
    2. Sketches of YSH Features
    3. YSH, Narrow Waists, and Perlis-Thompson Problems (Not yet released)
    0
    [zsh] Builtin Option Parsing in Zsh
    xpmo.gitlab.io Using Zparseopts

    tl;dr: Always use the flags -D and -E (and -F if available). Add a colon to indicate an argument is required (similar to getopt)

    Using Zparseopts
    0
    Tracing is your friend!

    A huge part of programming in general is learning how to troubleshoot something, not just having someone else fix it for you. One of the basic ways to do that is by tracing. Not only can this help you figure out what your script is doing and how it's doing it, but in the event that you need help from another person, posting the output can be beneficial to the person attempting to help.

    (If your shell isn't listed and you know how to enable tracing, comment below and I'll add it to the table!)

    Shell | How to enable tracing ---|--- Bash | set -x or set -o xtrace Fish | set fish_trace on sh | set -x Zsh | set -x or setopt xtrace

    Also, writing scripts in an IDE that supports your language. syntax highlighting can immediately tell you that you're doing something wrong.

    If an IDE isn't an option and you're using Bash or Sh, you can paste your script into https://www.shellcheck.net/

    (Inspired by this post on /r/bash)

    2
    Here's a sed tutorial I wrote a few years ago
    xpmo.gitlab.io Intermediate Sed Usage

    If you’ve been using Linux for any small length of time, you’ve likely used sed before. Most of the time, you’ve seen it in the form of sed "s/find/replace/g", so you simply go to it whenever there’s a replacement you want to do. But sed stands for stream editor, and as a tool it can do more than ju...

    Intermediate Sed Usage

    Feedback is still welcome, either here or as Merge Requests to my Gitlab Pages repo.

    0
    gamma Gamma @programming.dev
    Posts 13
    Comments 115
    Moderates