I was shown this thing called . It’s
the sneakiest of tricks for primitively boosting any
. It’s supported in the web servers
nginx
,
apache
,
lighttpd
, and
others.
server {
ssi on;
ssi_last_modified on;
}
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.
I was shown this thing called . It’s
the sneakiest of tricks for primitively boosting any
. It’s supported in the web servers
nginx
,
apache
,
lighttpd
, and
others.
server {
ssi on;
ssi_last_modified on;
}
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.
There’s a quick way to test the offline behaviour of programs on Linux.
unshare -c -n bash
$ ip addr
1: lo: <LOOPBACK> mtu 65536 qdisc noop state DOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
List network namespaces with lsns
.
$ lsns -t net
NS TYPE NPROCS PID USER NETNSID COMMAND
999 net 2 111 user 3 systemd
888 net 1 222 user unassigned └─bash
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.
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.
ls -la | ansifilter # Remove colors from output
xterm -cm # Set color mode to false
export NO_COLOR=true # For programs that follow
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.
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.
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.
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.
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”).
my @bin = 1..3;
@bin>>++;
say @bin;
I use it for quick with the multi dispatch CLI feature. The logo is a butterfly (or maybe it’s a raccoon).
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.
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).
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.
Command line completion is
probably another
lesser known one. The command line window is minimized, but typing q:
(commands) and q/
or q?
(search forward/backward) opens it up completely.
Wild mode configures its
behaviour.
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.
Abbreviations are
another completion
primitive in Vim. Since it’s full auto, it wants to be
magical. <Key>
presses and scripts can be replayed. Paired with
custom completions
and output from external tools, it transforms into advanced witchcraft and/or
cursed sorcery. In my case, it just expands acronyms.
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.
Here’s Vim editor thesaurus completion. This kind of completion has its various limitations that I might detail later. I mentioned thesauri in passing but my Internet connection is pitiful and writing about editor meta feels a bit bizarre.
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.
More Vim editor meta? Since posting a video of my LaTeX/Vim shenanigans, queries for tips arrive occasionally. Completion and whole line completion are boilerplate hammers. The more buffers and windows loaded, the more “robust”.