software

All posts tagged software

Software > Commodore SID music players >

sidplay2.sourceforge.net

A excellent, albeit simple, player.

Works just great.

It does support the HardSID if you grab the drivers for that.

Continue Reading

World of Warcraft > AddOns >

https://www.curseforge.com/wow/addons/pitbull-unit-frames-4-0 [ 1 ] was http://www.curse.com/downloads/details/7738/
https://www.wowace.com/projects/pitbull-unit-frames-4-0 [ 2 ] was http://www.wowace.com/wiki/PitBull

A Party/Raid Frames Replacement AddOn.

This found heavy use until Blizzard made sufficient UI improvements to obsolete the need for frames addons.

Continue Reading

World of Warcraft > AddOns >
Bongos >

wow.curse.com/downloads/details/2003/ (gone, archived)

A button bar helper thingy.

A bit rough in some cases but definitely usable and has some really awesome functionality. It’s also a hotkey manager! AWESOME. You can set hotkeys right from your spellbook. Also your macros, but make sure your macros don’t move around.. =/

Continue Reading

World of Warcraft > AddOns >

https://www.curseforge.com/wow/addons/deadly-boss-mods
https://www.warcrafttavern.com/dbm/

An AddOn to make raid fights easier. Although Blizzard added similar functionality into many of their fights, I consider this absolutely mandatory.

For most people I’d say “just install it”. It does need some significant configuration for many fights, and for my minimalistic taste. I mean, who the fuck cares about an enrage timer bar?

  • Note that, to reduce the size/complexity of the addon, they maintain the current expansion’s content as one addon, and other expansions in other addons (listed on their page).

Continue Reading

todo

Fbpanel-gemon-date-time.png

The Linux command.

See also:


Usage

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'

Timezone Conversion

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.

Why you don't use a short name
Do not use the familiar 3- or 4-letter shortcut names like 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:

    • China Standard Time (UTC+8)
    • Cuba Standard Time (UTC−5)
    • (North American) Central Standard Time (UTC−6)
    • .. and it is also a variant name for 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 German
  • HEO (Heure d’Europe occidentale) in French
  • ZEČ (Západoevropský čas) in Czech
  • ΏΔΕ (Ώρα Δυτικής Ευρώπης) in Greek.

Thus the short names’ deprecated status.

On MacOS

(macOS)

MacOS uses BSD‘s date(1) which lacks the -d option.

Homebrew will supply gdate

brew install coreutils

On Windows

(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.

Web

Resources

Times
#!/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

Clique image 1

World of Warcraft > AddOns >

https://www.wowinterface.com/downloads/fileinfo.php?id=5108
was also curseforge.com/addons/clique/

Bind keys or mouse clicks to spells and macros when mousing over a unit frame.

I use this for clicking on frames to heal that target.

The addon that I may have used the longest. Absolutely mandatory, especially for healers.

My fork for Project Ascension: https://github.com/spiralofhope/Clique-Ascension



Continue Reading