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
| <?php | |
| /* | |
| Generate however many unique bingo cards you require (should be fewer than 10k though). | |
| This is not meant to compute ALL possible bingo cards, obviously, but to help set up a | |
| nice amount of cards for play. | |
| If you require a free space somewhere on the board, you should probably tweak the output, | |
| not the generator. | |
| I wrote this because existing solutions on stackoverflow were in languages I could not | |
| test as easily and many existing generator websites generate crap cards that do not | |
| adhere to the bingo number distribution in the 5 rows, so you spend an eternity looking |
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="de" class="home"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Stunde 6 Demos</title> | |
| <link rel="stylesheet" href="style.css" /> | |
| <script src="script.js" defer></script> | |
| <script src="https://unpkg.com/alpinejs" defer></script> |
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
| Akabeko | |
| Anchor | |
| Ancient Tea Set | |
| Art of War | |
| Astrolabe | |
| Bag of Marbles | |
| Bag of Preparation | |
| Bird-Faced Urn | |
| Black Blood | |
| Black Star |
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
| [ | |
| { | |
| "hex":"fff1ce", | |
| "name":"blanc", | |
| "hbw":72, | |
| "id":"32001", | |
| "collection":1931 | |
| },{ | |
| "hex":"585d5e", | |
| "name":"gris foncé 31", |
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" data-theme="light"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>dark mode</title> | |
| <link rel="stylesheet" href="style.css" /> | |
| <script src="script.js" defer></script> | |
| </head> |
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
| <?php | |
| // ASN.1 parsing library | |
| // Attribution: http://www.krisbailey.com | |
| // license: unknown | |
| // modified: Mike Macgrivin hide@address.com 6-oct-2010 to support Salmon auto-discovery | |
| // from openssl public keys | |
| class ASN_BASE { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| on run {input, parameters} | |
| with timeout of 360 seconds | |
| tell application "System Events" | |
| activate | |
| display dialog input buttons {"OK"} default button 1 with title "File Hashes" giving up after 300 --seconds | |
| end tell | |
| end timeout | |
| end run |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| import Foundation | |
| import AVKit | |
| // This extension is based upon https://www.thonky.com/qr-code-tutorial/data-encoding | |
| extension AVMetadataMachineReadableCodeObject | |
| { | |
| var binaryValue: Data? | |
| { | |
| switch type | |
| { |
NewerOlder