Software >
(on Wikipedia)
https://www.debian.org/doc/manuals/debian-reference/ch02.en.html
A textmode-“GUI” for APT.
Software >
(on Wikipedia)
https://www.debian.org/doc/manuals/debian-reference/ch02.en.html
A textmode-“GUI” for APT.
The window manager for Xfce
I’ve used it. I like it just fine. I just find it a bit too shiny for my tastes and prefer Openbox.
![]() |
Taskbars, Application launchers >
(on Wikipedia)
https://wiki.lxde.org/en/LXPanel
A straightforward and capable taskbar.
I’ve used this for a long time, and it’s done the job well. I just want something similar to Windows 95.
BSD > BSD distributions >
(on Wikipedia)
https://www.dragonflybsd.org/
Clustering as a long-term goal.
DragonFly BSD has been on my radar for a very long time now.
Unfortunately, I haven’t had any success with it.
Software > Commodore SID music players >
A excellent, albeit simple, player.
Works just great.
It does support the HardSID if you grab the drivers for that.
Windows: https://web.archive.org/web/20200720073004/http://www.gsldata.se/c64/spw/
Software > Ruby > Ruby GUI toolkits >
https://sourceforge.net/projects/rubywebdialogs/
http://www.erikveen.dds.nl/rubywebdialogs/
The web browser as a graphical user interface for Ruby applications.
While it’s real, it’s not in heavy development and is still alpha as of June 2006.
todo
![]() |
The Linux command.
See also:
yyyy-mm-dd ∞date +%Y-%m-%d
yyyy-mm-dd_hh-mm ∞date --utc +'%Y-%m-%d_%H-%M'
This uses 24-hour time and UTC to maintain sortability and avoid timezone confusion.
Maybe you prefer something which isn’t a colon (:) but looks like a colon
date --utc +'%Y-%m-%d_%H꞉%M'
props to http://www.wiki.balug.org/wiki/doku.php?id=balug:covid-19
On any system with GNU date(1), included in GNU coreutils, you can convert a remote event’s time/date to your local timezone’s time/date using syntax as per the following example:
date -d 'TZ="Europe/London" 2021-02-13 14:00'
Sat Feb 13 06:00:00 PST 2021
GNU date(1) will use your system’s TZ database to convert time/date correctly, including compensating for DST / Standard Time issues at either your and/or the remote location.
It is also possible to generalize that syntax, to convert to a timezone differing from your local timezone, by prefacing the foregoing command with an output-timezone qualifier, e.g., as follows requesting conversion to Arizona time/date:
TZ='America/Phoenix' date -d 'TZ="Europe/London" 2021-02-13 14:00'
Sat Feb 13 07:00:00 MST 2021
Quoting must be as shown, and timezone names must be correct, or you will get errors or (worse) silent ignoring of the provided timezone qualifier.
Use canonical TZ database names.
PST and PDT, as they are neither unique nor standardised – nor UTC offsets like UTC-8, which for many locations have DST vs. Standard Time problems: The short names’ ambiguities become more troubling the more international one’s focus is. For example:
CST can mean:
UTC+8)UTC−5)UTC−6)ACST (Australian Central Standard Time, UTC+9:30)Likewise, a time zone’s short name will differ depending on language, as with:
WET (Western European Time, UTC+0)WEZ (Westeuropäische Zeit) in GermanHEO (Heure d’Europe occidentale) in FrenchZEČ (Západoevropský čas) in CzechΏΔΕ (Ώρα Δυτικής Ευρώπης) in Greek.
Thus the short names’ deprecated status.
(macOS)
MacOS uses BSD‘s date(1) which lacks the -d option.
Homebrew will supply gdate
brew install coreutils
(Windows)
Windows Subsystem for Linux 2 has the appropriate date. It is likely that Windows Subsystem for Linux does too.
Otherwise, install GnuWin32 for date.
#!/bin/sh for tz in \ 'PST8PDT US/Pacific' \ 'CST6CDT US/Central' \ GMT0 \ do TZ="$(set -- $tz; printf '%s\n' "$1")" printf '%s\n' "$(TZ="$TZ" date -Iseconds "$@") $(TZ="$TZ" date "$@") $tz" done | sort -u # 'EST5EDT US/Eastern' \ # Europe/London \ # Asia/Kolkata # (for TZ in $(cd /usr/share/zoneinfo && find * -follow -type f -exec file -L \{\} \; | sed -ne 's;^\([^:]*\): timezone data,.*$;\1;p'); do export TZ; date -d @1707350400 | tr '\012' ' '; echo "$TZ"; done) | sort -k 3,3bn -k 4,4
![]() |
Software >
(on Wikipedia)
https://wiki.debian.org/Apt
The package format, notably used by Debian.
See also:
ar and dpkg-deb for working with them as archives.
Software > Ruby, Ruby GUI toolkits >
for Qt tool kit ver 2.x
Software > Ruby > Ruby web programming >
(on Wikipedia)
https://github.com/ruby/webrick [ 1 ] was http://www.webrick.org/
A Ruby library program to build HTTP servers.
Mongrel is reportedly faster/cooler.
Footnotes