This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Edit this configuration file to define what should be installed on | |
| # your system. Help is available in the configuration.nix(5) man page | |
| # and in the NixOS manual (accessible by running ‘nixos-help’). | |
| { config, pkgs, lib, ... }: | |
| let | |
| home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-25.05.tar.gz"; | |
| dotnetPkg = pkgs.dotnetCorePackages.sdk_8_0; | |
| forcedUnstable = import | |
| (builtins.fetchTarball https://github.com/nixos/nixpkgs/tarball/nixpkgs-unstable) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>test</title> | |
| </head> | |
| <body> | |
| <p id="data-output">Nothing</p> | |
| <script type="text/javascript"> | |
| const DomUpdateWorker = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Check if a given JavaScript Date is a Danish public holiday, | |
| * using the same rules and Easter algorithm as in the provided PHP. | |
| * - No external libraries | |
| * - Works in the browser | |
| * - Uses Europe/Copenhagen civil date for comparisons | |
| * | |
| * @param {Date} date A JavaScript Date (any timezone) | |
| * @returns {boolean} true if the Copenhagen date is a holiday | |
| */ |
OlderNewer