16 August 2025

CGI

System: Slackware Linux (version 15.0)
CPUs: Intel(R) Core(TM) i5-3230M CPU @2.60GHz
GPU: Mesa DRI Intel(R) HD Graphics 4000

A trivial CGI example using a shell script.

bash-5.1$ mkdir -p ~/public_html/cgi-bin
bash-5.1$ cat <<EOF > ~/public_html/cgi-bin/brazil
> #!/bin/sh
> echo -e "Content-Type: text/plain\n\n"; TZ="America/Bahia" date
> EOF
bash-5.1$ chmod 744 ~/public_html/cgi-bin/brazil
bash-5.1$ python3 -m http.server -d ~/public_html --cgi &
[1] 1640
bash-5.1$ Serving HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ...

bash-5.1$ w3m -dump http://localhost:8000/cgi-bin/brazil
127.0.0.1 - - [15/Aug/2025 21:20:28] "GET /cgi-bin/brazil HTTP/1.0" 200 -

Sun Aug 15 16:20:28 -03 2025
bash-5.1$ kill 1640
bash-5.1$



The global directory for cgi files.

root@darkstar:~# ls /var/www/cgi-bin
printenv  printenv.vbs  printenv.wsf  test-cgi
root@darkstar:~#

11 August 2025

mxedit

System: Slackware Linux (version 15.0)
CPUs: Intel(R) Core(TM) i5-3230M CPU @2.60GHz
GPU: Mesa DRI Intel(R) HD Graphics 4000

The first ftp address is no longer valid.

bash-5.1$ w3m -dump https://wiki.tcl-lang.org/page/Tcl+Editors | sed -n '846,855p'
What: Mxedit
Where: ftp://parcftp.xerox.com/pub/mxedit/mxedit.2.4.tar.Z
        ftp://ftp.tcl.tk/pub/tcl/mirror/ftp.procplace.com/sorted/packages-7.6/text/mxedit.2.3.1.tar.gz
        ftp://ftp.tcl.tk/pub/tcl/mirror/ftp.procplace.com/sorted/packages-7.6/text/mxedit.menus.gz
Description: A Tk text editor. Note that the edit
        widget itself is stand-alone so that you can use it in other
        applications. Also, mxedit.menus is a Tk script to
        put a veneer over Tk menus.
Updated: 10/1998
Contact: mailto:[email protected] (Brent Welch)
bash-5.1$

10 August 2025

ma

System: Slackware Linux (version 15.0)
CPUs: Intel(R) Core(TM) i5-3230M CPU @2.60GHz
GPU: Mesa DRI Intel(R) HD Graphics 4000

F. Winkelmann's mimimalist clone of acme.

[   ]

mush

System: Slackware Linux (version 15.0)
CPUs: Intel(R) Core(TM) i5-3230M CPU @2.60GHz
GPU: Mesa DRI Intel(R) HD Graphics 4000

The da.po file is incomplete.

bash-5.1$ git clone -q https://github.com/argv01/zmail.git
bash-5.1$ msgfmt -c -v -o /dev/null zmail/mush/da.po
zmail/mush/da.po:15: warning: header field 'Language' missing in header
2 translated messages, 2 untranslated messages.
bash-5.1$ sed -i '22i "Language: da\\n"' zmail/mush/da.po
bash-5.1$ sed -i '48s/"/"For at bygge mush binære pakker skal du køre/' zmail/mush/da.po
bash-5.1$ sed -i '54s/"/"        build-mush/' zmail/mush/da.po
bash-5.1$
[   ]

26 July 2025

Quarto

System: Slackware Linux (version 15.0)
CPUs: Intel(R) Core(TM) i5-3230M CPU @2.60GHz
GPU: Mesa DRI Intel(R) HD Graphics 4000

A scientific and technical publishing system.

[   ] [   ]

23 July 2025

Hugo

System: Slackware Linux (version 15.0)
CPUs: Intel(R) Core(TM) i5-3230M CPU @2.60GHz
GPU: Mesa DRI Intel(R) HD Graphics 4000

This slackbuild installs the "extended" version of Hugo.

[   ] [   ]

03 July 2025

dart

System: Microsoft Windows 10 Home Edition
CPUs: Intel(R) Core(TM) i5-3230M CPU @2.60GHz
GPU: Mesa DRI Intel(R) HD Graphics 4000
Deps: dartsdk-windows-x64-release.zip

Disabling dart analytics.

https://dart.dev/get-dart/archive
dartsdk-windows-x64-release.zip

Create these user files prior to first running the dart executable, debugging and performance tools.

PS C:\Users\eric> pushd $env:APPDATA
PS C:\Users\eric\AppData\Roaming> [void](ni -ItemType Directory -Path dart-tool)
PS C:\Users\eric\AppData\Roaming> [void](ni -ItemType Directory -Path flutter-devtools)
PS C:\Users\eric\AppData\Roaming> @"
>> reporting=0
>> dart-tool=$(Get-Date -Format yyyy-MM-dd),1
>> devtools=$(Get-Date -Format yyyy-MM-dd),1
>> "@ > dart-tool\dart-flutter-telemetry.config
PS C:\Users\eric\AppData\Roaming> @'
>> {
>>  "analyticsEnabled": false,
>>  "isFirstRun": false
>> }
>> '@ > flutter-devtools\.devtools
PS C:\Users\eric\AppData\Roaming> popd
PS C:\Users\eric>

[   ] [   ]


DevTools