I hereby claim:
- I am donaldguy on github.
- I am donaldguy (https://keybase.io/donaldguy) on keybase.
- I have a public key whose fingerprint is 10EA BF8E 35E2 9F8D 69C6 DA36 6C99 1C70 C73A 15BC
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| ;; DONALD GUY'S AMAZING UNSIGNED 32-bit INTEGER CALCULATOR!! | |
| ;; | |
| ;; written, after much research and testing, on December 30-31, 2006 | |
| ;; (if Y2K hits seven years late, we will still have this ^_^) | |
| ;; | |
| ;; Limitations: can't work with negative numbers (though it has subtraction) | |
| ;; only works with a MAX sum, product, minuend, or dividend | |
| ;; of 4,294,967,295 | |
| ;; | |
| ;; Target Archetectuire: IA32 system running a POSIX operating system in |
| //Secret track | |
| // -- removed _0xe7d4 keywords array | |
| function playAudio(track_id) { | |
| var audio_object = window.audioObjects[track_id]; | |
| if (audio_object) { | |
| if (!audio_object.requestPlaying) { | |
| audio_object.play(); | |
| } else { |
| // | |
| // main.c | |
| // heavy_numbers | |
| // | |
| // Created by Donald Guy on 6/18/13. | |
| // Copyright (c) 2013 Donald Guy. All rights reserved. | |
| // | |
| #include <stdio.h> | |
| #include <stdlib.h> |
| require 'set' | |
| $test_board = [['i', 'b', 't'], | |
| ['m', 'e', 's'], | |
| ['r', 'o', 'e']] | |
| def valid_words_on_board(board, trie = Trie.new(word_list())) | |
| valid_words = [] | |
| board = Board.new(board) |