🤷♀️
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
| #lang racket | |
| (require racket/gui) | |
| ; | |
| ; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
| ; I wrote this code five years ago while learning functional programming. | |
| ; It is an example of what you should NOT do in a functional language (or in software writing in general). | |
| ; | |
| ; THIS IS NOT A GOOD EXAMPLE OF RACKET CODE. | |
| ; |
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> | |
| <head> | |
| <script> | |
| // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ | |
| // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating | |
| // requestAnimationFrame polyfill by Erik Mˆller |
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
| #ifndef VECT_H | |
| #define VECT_H | |
| /* | |
| * vect.h -- type-safe generic dynamic array | |
| * made by sixthgear. BSD Licenced. | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> |
NewerOlder