diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-24 20:48:23 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-24 20:48:23 +0800 |
commit | fb1beeaa0e462b8d443af2f633daa85b66d69411 (patch) | |
tree | 79dfe11b242300df637ec632c10b5860ffbd4fc4 /static | |
parent | Use a WebAssembly solver (diff) | |
download | powxy-fb1beeaa0e462b8d443af2f633daa85b66d69411.tar.gz powxy-fb1beeaa0e462b8d443af2f633daa85b66d69411.tar.zst powxy-fb1beeaa0e462b8d443af2f633daa85b66d69411.zip |
Update license headers
Diffstat (limited to 'static')
-rw-r--r-- | static/solver.c | 3 | ||||
-rw-r--r-- | static/solver.js | 3 | ||||
-rw-r--r-- | static/style.css | 5 |
3 files changed, 11 insertions, 0 deletions
diff --git a/static/solver.c b/static/solver.c index d76d020..a06140e 100644 --- a/static/solver.c +++ b/static/solver.c @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: BSD-2-Clause +// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org> +// // This is a reference implementation of the proof of work solver in C. // For security reasons, it is recommended that you read and understand the // entire program first if you actually want to run it. diff --git a/static/solver.js b/static/solver.js index a3f8366..b440a21 100644 --- a/static/solver.js +++ b/static/solver.js @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: BSD-2-Clause +// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org> + let wasm_instance = null; let wasm_exports = null; diff --git a/static/style.css b/static/style.css index 6ca536b..154d629 100644 --- a/static/style.css +++ b/static/style.css @@ -1,3 +1,8 @@ +/* + * SPDX-License-Identifier: BSD-2-Clause + * SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org> + */ + html { font-family: sans-serif; background-color: var(--background-color); |