Skip to content

Instantly share code, notes, and snippets.

View maddox's full-sized avatar

Jon Maddox maddox

View GitHub Profile
#### GIT #####
alias gits='git status'
alias glog='git log'
alias gl='git pull'
alias gp='git push'
alias gd='git diff | mate'
alias gc='git commit -v'
alias gca='git commit -v -a'
alias gch='git checkout'
alias gb='git branch'
# install vim so that you can use it to edit stuff from a mac
apt-get update
apt-get install vim
# as root add your user
adduser deployer
# add admin group
addgroup admin
/sbin/ipfw add 100 pipe 1 ip from any 80 to any out
/sbin/ipfw add 200 pipe 2 ip from any 80 to any in
/sbin/ipfw pipe 1 config bw 64Kbit/s queue 64Kbytes delay 250ms
/sbin/ipfw pipe 2 config bw 64Kbit/s queue 64Kbytes delay 250ms
//determine height of label
CGSize size = CGSizeMake(240.0,1000.0);
size = [[NSString stringWithFormat:@"%@: %@", [tweetResult objectForKey:@"from_user"], [tweetResult objectForKey:@"text"]] sizeWithFont:[UIFont systemFontOfSize:14.0] constrainedToSize:size lineBreakMode:UILineBreakModeWordWrap];
NSURL *jsonURL = [NSURL URLWithString:[NSString stringWithFormat:@"http://search.twitter.com/search.json?q=%@", (NSString *)[appDelegate.trends objectAtIndex:indexPath.row]]];
NSString *jsonData = [[NSString alloc] initWithContentsOfURL:jsonURL];
self.tweetView.jsonArray = [[jsonData JSONValue] objectForKey:@"results"];
if (self.tweetView == nil){
TweetViewController *viewController = [[TweetViewController alloc] initWithNibName:@"TweetView" bundle:[NSBundle mainBundle]];
self.tweetView = viewController;
[viewController release];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *MyIdentifier = @"MyIdentifier";
TweetCell *cell = (TweetCell *)[tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if (cell == nil) {
cell = [[[TweetCell alloc] initWithFrame:CGRectZero reuseIdentifier:MyIdentifier] autorelease];
}
// SummizerAppDelegate *appDelegate = (SummizerAppDelegate *)[[UIApplication sharedApplication] delegate];
//
// DataSrc.m
// summizer
//
// Created by Jon Maddox on 8/6/08.
// Copyright 2008 Mustache, Inc.. All rights reserved.
//
#import "DataSrc.h"
rake aborted!
You have a nil object when you didn't expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.length
/Users/jmaddox/source/github/vendor/plugins/fixture_scenarios/tasks/fixture_scenarios_tasks.rake:39
# index
@downloads = get_downloads
# PYROT AND NEWZBIN STUFF
def get_pyrot
@pyrot = Pyrot.new(:url => current_user.pyrot_url, :path => '/xmlrpc', :port => current_user.pyrot_port)
end