An implementation of Conway's Game of Life in 140 characters of Ruby.
Created by Simon Ernst (@sier).
- (void)drawRect:(NSRect)rect | |
{ | |
// Drawing code here. | |
CGContextRef context = (CGContextRef)[[NSGraphicsContext currentContext] graphicsPort]; | |
CGContextSetTextMatrix(context, CGAffineTransformIdentity); | |
NSAttributedString *str = [[NSAttributedString alloc ] | |
initWithString:@"学习 Core Text. Learning Core Text. 中华人民共和国。" | |
attributes:[NSDictionary dictionaryWithObjectsAndKeys:[NSFont fontWithName:@"Adobe Song Std" size:24.0f], (NSString *)kCTFontAttributeName, [NSNumber numberWithBool:YES], (NSString *)kCTVerticalFormsAttributeName, nil]]; | |
CFAttributedStringRef attrString = (CFAttributedStringRef)str; | |
CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString(attrString); |
/* | |
* Adds the serialNumber property to the UIDevice class | |
* | |
* The implementation uses undocumented (for iOS) IOKit functions, | |
* so handle with caution and be prepared for nil. | |
*/ | |
#import <UIKit/UIDevice.h> | |
@interface UIDevice (serialNumber) |
#include <clang-c/Index.h> | |
#include <cstdlib> | |
#include <iostream> | |
/* | |
* Compile with: | |
* g++ complete.cc -o complete -lclang -L/usr/lib/llvm | |
* Run with: | |
* LIBCLANG_TIMING=1 ./complete file.cc line column [clang args...] | |
*/ |
#!/bin/sh | |
# Script for managing build and version numbers using git and agvtool. | |
# Change log: | |
# v1.0 18-Jul-11 First public release. | |
# v1.1 29-Sep-12 Launch git, agvtool via xcrun. | |
version() { |
// | |
// GRAppDelegate.m | |
// Testme | |
// | |
// Created by Marco Tabini on 11-08-29. | |
// Copyright (c) 2011 Marco Tabini. All rights reserved. | |
// | |
#import "GRAppDelegate.h" |
# 0 is too far from ` ;) | |
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
#set -g default-terminal screen-256color | |
set -g status-keys vi | |
set -g history-limit 10000 |
// | |
// UIImage+JTImageDecode.h | |
// | |
// Created by james on 9/28/11. | |
// http://ioscodesnippet.tumblr.com | |
// | |
@interface UIImage (JTImageDecode) | |
+ (UIImage *)decodedImageWithImage:(UIImage *)image; | |
@end |
// | |
// SPXFrameScroller.h | |
// SmartyPix | |
// | |
// Created by Mike Bobiney on 8/23/11. | |
// Copyright 2011 Tap Through Apps LLC. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
An implementation of Conway's Game of Life in 140 characters of Ruby.
Created by Simon Ernst (@sier).