Monthly Archives: December 2010

PCRE unicode support CENTOS

Centos PCRE repo is 6.6, and cannot be YUM REMOVED without removing hundred of dependancies…

I needed to install PCRE with unicode support which meant compiling my own package.

Logrotate

Rotating your log files will save you a bunch of space from bloated web logs growing out of control. Logrotate is easily customisable to suit any needs.

IndexPath Row from sub-function

Ever wondered how you could generate the IndexPath row from a Function not related to tableview?

 
	UITableViewCell *clickedCell = (UITableViewCell *)[[sender superview] superview];
	NSIndexPath *clickedButtonPath = [_tableView indexPathForCell:clickedCell];
	int row = [clickedButtonPath row];
	NSLog(@"%i",row);