Skip to main content
tdro

Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

tdro micro.thedroneely.com view
  • Markdown Plaintext Embed Permalink
  • 86/50 words 29s read

    I came across a peculiar site. It’s called https://no-color.org (terminals). Xterm and ansifilter work well for programs that are unable to contextually disable colors.

    shell
    
    ls -la | ansifilter   # Remove colors from output
    xterm -cm             # Set color mode to false
    export NO_COLOR=true  # For programs that follow
    The more methods the better

    I used to wonder why some preferred no syntax/color highlighting. It turns out that output can/will be hidden ( black on black, white on white) and color contrasts/distinctions are the ultimate talk past.

    #gists
    tdro

    Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

    tdro micro.thedroneely.com view
  • Markdown Plaintext Embed Permalink
  • 96/50 words 32s read

    The interest in online is high. In the real world you tend to be constrained and blindfolded by the tools available/allowed. Filtering is peculiar though.

    See how the terminal/editor splits? Filtering makes them kiss? Commands that input|output (pipe) work best (compilers, transpilers and code generators). The meta is the limit.

    Everything's just a string? (Obviously, I don't know all of these languages).
    Index: Cache · Source
    #clips #gists
    tdro

    Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

    tdro micro.thedroneely.com (edited) view
  • Markdown Plaintext Embed Permalink
  • 109/50 words 36s read

    Some of my configuration files are online aren’t they? Raku is one of the most interesting, if not the most. I’m not an expert but it pretty much has every language construct ( promises) plus exotic stuff. The exotic operators are strangely intuitive (and “hyped”).

    raku
    my @bin = 1..3;
    @bin>>++;
    say @bin;
    My array (@) named bin has numbers 1 to 3 (1..3) like this [ 1 2 3 ]. The hyper operator »++ increments (++) its items by 1. Say prints [ 2 3 4 ].

    I use it for quick with the multi dispatch CLI feature. The logo is a butterfly (or maybe it’s a raccoon).

    #gists
    tdro

    Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

    tdro micro.thedroneely.com view
  • Markdown Plaintext Embed Permalink
  • 88/50 words 29s read

    File name, spelling, and dictionary completion exist too. This is tortured, but combining them makes a meta point? The “meta” is hard to convey, but completion doubles as a way of finding, changing, and passing keywords around. Terminals are fair game too. That’s basic completion in a nutshell (minus the magic).

    #clips #gists

    Authors

    Gallery

    Web Feeds (6)

    Web Links