Page Title: Moon Calendar SVG
separator line image
paulcarlisle.net logo
help support
this site

The calendar below shows the phase of the moon for each day of the selected month. You can change the month and year to whatever you like between January 3999 BC and December 3999 AD.

This version of the Moon Calendar uses HTML 5, Javascript, and SVG. It replaces the Java-based version of the calendar, which is still available here.

Hovering your mouse over any day in the calendar will display a popup showing the moon's distance, phase and other information.

Instructions on what the various controls do is found below. There is also a reference section for those interested in the algorithms used.

Feel free to with your thoughts on the program.

You are using a browser that does not support SVG. This page relies heavily on SVG and other features that are not supported in older browser versions. Please consider upgrading to a more current browser.

The original Java-based version of the Moon Calendar remains available here.

Keyfilegenerator.cmd

@echo off :: ============================================================ :: Script Name: keyfilegenerator.cmd :: Description: Generates a secure random key file (Base64) :: Author: AI Assistant :: Version: 1.0 :: ============================================================

as an Administrator if the output directory is protected. Navigate to the script's folder: cd C:\path\to\script . Execute: Type keyfilegenerator.cmd and press Enter. keyfilegenerator.cmd

| Tool | Pros | Cons | |------|------|------| | ( [RNGCryptoServiceProvider] ) | Built-in, secure, flexible | Requires PS 3.0+ | | OpenSSL ( openssl rand -out keyfile 4096 ) | Cross-platform, industry standard | Extra installation | | GnuPG ( gpg --gen-random ) | High entropy, FIPS compliant | Complex output parsing | | /dev/urandom (WSL) | True randomness | Not native Windows | | Tool | Pros | Cons | |------|------|------|

Using certutil with MD5 (not shown) is dangerous. Always use SHA-256 or SHA-512. # Excerpt from

: Ensure every key generated meets your organization's security standards (e.g., 4096-bit RSA).

# Excerpt from .github/workflows/build.yml - name: Generate build key run: | keyfilegenerator.cmd --output build_secret.key --size 2048 echo "KEYFILE=build_secret.key" >> $env:GITHUB_ENV

paulcarlisle.net

@echo off :: ============================================================ :: Script Name: keyfilegenerator.cmd :: Description: Generates a secure random key file (Base64) :: Author: AI Assistant :: Version: 1.0 :: ============================================================

as an Administrator if the output directory is protected. Navigate to the script's folder: cd C:\path\to\script . Execute: Type keyfilegenerator.cmd and press Enter.

| Tool | Pros | Cons | |------|------|------| | ( [RNGCryptoServiceProvider] ) | Built-in, secure, flexible | Requires PS 3.0+ | | OpenSSL ( openssl rand -out keyfile 4096 ) | Cross-platform, industry standard | Extra installation | | GnuPG ( gpg --gen-random ) | High entropy, FIPS compliant | Complex output parsing | | /dev/urandom (WSL) | True randomness | Not native Windows |

Using certutil with MD5 (not shown) is dangerous. Always use SHA-256 or SHA-512.

: Ensure every key generated meets your organization's security standards (e.g., 4096-bit RSA).

# Excerpt from .github/workflows/build.yml - name: Generate build key run: | keyfilegenerator.cmd --output build_secret.key --size 2048 echo "KEYFILE=build_secret.key" >> $env:GITHUB_ENV



Credits

Moon Calendar SVG makes use of JQuery Calendars, by Keith Woods.

References and Aids

(If you don't see any references, you are probably using an ad blocker or are running without an Internet connection. Please disable your ad blocker or connect to the Internet and refresh the page to see these resources.)


paulcarlisle.net logo
help support
this site