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
;; capitalize | |
M-c | |
M-- M-c | |
;; Upper case | |
M-u | |
M-- M-u | |
;; lower case | |
M-l | |
M-- M-l |
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
1. Paradigms of Artificial Intelligence Programming: Case Studies in Common Lisp | |
2. Code: The Hidden Language of Computer Hardware and Software | |
3. An introduction to algorithms | |
4. Artificial Intelligence: a modern approach | |
5. ON LISP | |
6. ANSI COMMON LISP | |
7. LISP IN SMALL PIECES | |
8. THE LITTLE LISPER | |
9. THE SEASONED SCHEMER |
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
// | |
// RoundedRectLabel.h | |
// | |
#import <UIKit/UIKit.h> | |
@interface CountLabel : UILabel { | |
NSInteger cornerRadius; | |
UIColor *rectColor; | |
} |
NewerOlder