/dev/mataha
/dev/mataha
## Description Most of what I've wanted to write about had already been discussed in #3460; to keep it brief: `package.json` is used more and more to store configuration for...
'prepare-commit-msg' hook sample doesn't mention what the third argument is for nor when is it actually passed; I feel like it should be, for the sake of convenience (this doesn't...
Writing F# scripts is a great way of, among other things, creating project tooling to improve the development and build processes, by e.g. managing git hooks or setting up CI....
As it is right now, some scripts in this repo @ GitHub are detected as [Prolog](https://github.com/irssi/scripts.irssi.org/search?l=Prolog), not Perl, which screws up their syntax coloring in creative ways, e.g. [`scriptassist.pl`](https://github.com/irssi/scripts.irssi.org/blob/a6664390ca88cddc057606a7aabf6e077dd99207/scripts/scriptassist.pl), [`adv_windowlist.pl`](https://github.com/irssi/scripts.irssi.org/blob/e560b26dc8030de89dd72c4955e389da2241e706/scripts/adv_windowlist.pl),...
I have an irssi session on which symlinks are not supported. Whenever I update my scripts via `/scriptassist update all` and restart my session later, those updated scripts are not...
Certain times I have a dubious pleasure of working with UTF-16 files that need to have a BOM in order to be read correctly - usual suspects involve Windows Registry...
On Windows, `more` is unable to open the file generated by `mkstemp()` due to not recognizing the first argument as a path, but as a parameter. In contrast to *nix,...
When e.g. logging, `redbean` doesn't use the system's timezone, preferring a different one instead: ```batchfile prompt C:\Users\user> wmic os get LocalDateTime /format:list LocalDateTime=20230720012811.734000+120 C:\Users\user> redbean I2023-07-19T16:28:13.079556:tool/net/redbean.c:7057:redbean:22652] (srvr) listen http://127.0.0.1:8080 >:...
Say I have the following template: ```jinja batchfile {%- macro code(var) -%} if not "%VARIABLE%"=="{{ var }}" ( echo {{ var }} ) {%- endmacro code -%} for %i in...
When it comes to resolving paths on Windows, even though the underlying API expects drive letter prefixes to be uppercase, some sources (e.g. environment variables like `=C:`) won't normalize components,...