Skip to content

Commit

Permalink
Shuffle over a few more geek holidays
Browse files Browse the repository at this point in the history
  • Loading branch information
tylert committed Dec 19, 2024
1 parent c2b826c commit ed05fad
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
18 changes: 18 additions & 0 deletions en-XX.go
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,12 @@ func englishOther(year uint32) {
t = find_date(fmt.Sprintf("%d-09-17", year))
print_date(t, fmt.Sprintf("%s Birthday of Linux", ordinal(int(year-1991), "en")))

// April 19th, 1993
// https://en.wikipedia.org/wiki/NetBSD
// https://fr.wikipedia.org/wiki/NetBSD
t = find_date(fmt.Sprintf("%d-04-19", year))
print_date(t, fmt.Sprintf("%s Birthday of NetBSD", ordinal(int(year-1993), "en")))

// July 17th, 1993
// https://en.wikipedia.org/wiki/Slackware
// https://fr.wikipedia.org/wiki/Slackware
Expand All @@ -378,6 +384,18 @@ func englishOther(year uint32) {
t = find_date(fmt.Sprintf("%d-09-15", year))
print_date(t, fmt.Sprintf("%s Birthday of Debian", ordinal(int(year-1993), "en")))

// November 1st, 1993
// https://en.wikipedia.org/wiki/FreeBSD
// https://fr.wikipedia.org/wiki/FreeBSD
t = find_date(fmt.Sprintf("%d-11-01", year))
print_date(t, fmt.Sprintf("%s Birthday of FreeBSD", ordinal(int(year-1993), "en")))

// October 18th, 1995
// https://en.wikipedia.org/wiki/OpenBSD
// https://fr.wikipedia.org/wiki/OpenBSD
t = find_date(fmt.Sprintf("%d-10-18", year))
print_date(t, fmt.Sprintf("%s Birthday of OpenBSD", ordinal(int(year-1995), "en")))

// June 2nd, 1998
// https://www.gimp.org/about/history.html
// https://en.wikipedia.org/wiki/GIMP
Expand Down
3 changes: 0 additions & 3 deletions holiday_other.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,16 +95,13 @@ def main(year):

print(f'{date(year, MARCH, 15)} {ordinal(year - 2013)} Birthday of Docker')
print(f'{date(year, MARCH, 18)} {ordinal(year - 1985)} Birthday of GNU Manifesto')
print(f'{date(year, MARCH, 21)} {ordinal(year - 1993)} Birthday of NetBSD')
print(f'{date(year, APRIL, 16)} {ordinal(year - 1971)} Birthday of FTP')
print(f'{date(year, MAY, 22)} {ordinal(year - 1973)} Birthday of Ethernet')
print(f'{date(year, JUNE, 19)} {ordinal(year - 1984)} Birthday of X-Windows')
print(f'{date(year, JUNE, 19)} {ordinal(year - 1993)} Birthday of FreeBSD')
print(f'{date(year, JUNE, 7)} {ordinal(year - 2014)} Birthday of Kubernetes')
print(f'{date(year, AUGUST, 1)} {ordinal(year - 1998)} Birthday of IRC')
print(f'{date(year, AUGUST, 15)} {ordinal(year - 1997)} Birthday of GNOME')
print(f'{date(year, SEPTEMBER, 27)} {ordinal(year - 1983)} Birthday of GNU')
print(f'{date(year, OCTOBER, 18)} {ordinal(year - 1995)} Birthday of OpenBSD')
print(f'{date(year, OCTOBER, 19)} {ordinal(year - 2009)} Birthday of Alpine') # or 2005-08-23???

#// XXX FIXME TODO Do a much better job with the moon phases!!!
Expand Down

0 comments on commit ed05fad

Please sign in to comment.