Skip to content

Instantly share code, notes, and snippets.

View yao2030's full-sized avatar

yao2030 yao2030

  • Shanghai, China
View GitHub Profile
;; capitalize
M-c
M-- M-c
;; Upper case
M-u
M-- M-u
;; lower case
M-l
M-- M-l
@yao2030
yao2030 / book.txt
Last active December 9, 2015 19:38
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
@digerata
digerata / RoundedRectLabel.h
Created July 30, 2010 16:12
Create a UILabel with a rounded rect background like in the iPhone Mail app. (Much faster than using UILabel.layer.cornerRadius)
//
// RoundedRectLabel.h
//
#import <UIKit/UIKit.h>
@interface CountLabel : UILabel {
NSInteger cornerRadius;
UIColor *rectColor;
}