Skip to content

Instantly share code, notes, and snippets.

Process: GetGlue [36246]
Path: /Users/netpro2k/Library/Application Support/iPhone Simulator/4.0.2/Applications/DB4E1C5D-0392-4B78-BBF1-BEA737948DED/GetGlue.app/GetGlue
Identifier: GetGlue
Version: ??? (???)
Code Type: X86 (Native)
Parent Process: launchd [95]
Date/Time: 2010-08-30 18:46:52.302 -0400
OS Version: Mac OS X 10.6.4 (10F2521)
Report Version: 6
Process: GetGlue [36190]
Path: /Users/netpro2k/Library/Application Support/iPhone Simulator/4.0.2/Applications/DB4E1C5D-0392-4B78-BBF1-BEA737948DED/GetGlue.app/GetGlue
Identifier: GetGlue
Version: ??? (???)
Code Type: X86 (Native)
Parent Process: launchd [95]
Date/Time: 2010-08-30 18:44:58.026 -0400
OS Version: Mac OS X 10.6.4 (10F2521)
Report Version: 6
asdasd
9/13/10 3:18:04 PM GetGlue[18759] *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSMutableArray objectAtIndex:]: index 1 beyond bounds [0 .. 0]'
*** Call stack at first throw:
(
0 CoreFoundation 0x036a1919 __exceptionPreprocess + 185
1 libobjc.A.dylib 0x037ef5de objc_exception_throw + 47
2 CoreFoundation 0x03697465 -[__NSArrayM objectAtIndex:] + 261
3 UIKit 0x008d3281 -[UITableView(_UITableViewPrivate) _endCellAnimationsWithContext:] + 6851
4 UIKit 0x008c31e1 -[UITableView deleteRowsAtIndexPaths:withRowAnimation:] + 56
5 GetGlue 0x00079713 -[TiUITableView dispatchAction:] + 5253
6 GetGlue 0x000735cb -[TiUITableViewProxy deleteRow:] + 955
@netpro2k
netpro2k / GetGlueAutoPager.user.js
Created October 31, 2010 21:39
Auto page streams on GetGlue.com
// ==UserScript==
// @name GetGlue AutoPager
// @author Dominick D'Aniello
// @namespace http://netpro2k.com/
// @description Auto page streams on GetGlue.com
// @include http://getglue.com/streams
// @include http://getglue.com/streams/*
// ==/UserScript==
var st = document.createElement('script');
@netpro2k
netpro2k / GetGlueIcefilms.user.js
Created November 2, 2010 02:44
Add a GetGlue Widget to icefilms pages
// ==UserScript==
// @name GetGlue IceFilms Widget
// @author Dominick D'Aniello
// @namespace http://netpro2k.com/
// @description Add a GetGlue Widget to icefilms pages
// @include http://www.icefilms.info/ip.php?v=*
// ==/UserScript==
var st = document.createElement('script');
st.setAttribute('type', 'text/javascript');
@netpro2k
netpro2k / gist:708654
Created November 21, 2010 11:18
openkinect glView done in OpenCV
#include "cv.h"
#include "highgui.h"
#include <stdio.h>
#include "libfreenect.h"
#include <pthread.h>
freenect_context *f_ctx;
freenect_device *f_dev;
IplImage* rgbBack;
@netpro2k
netpro2k / gist:709237
Created November 21, 2010 22:36
glview for mac
/*
* This file is part of the OpenKinect Project. http://www.openkinect.org
*
* Copyright (c) 2010 individual OpenKinect contributors. See the CONTRIB file
* for details.
*
* This code is licensed to you under the terms of the Apache License, version
* 2.0, or, at your option, the terms of the GNU General Public License,
* version 2.0. See the APACHE20 and GPL2 files for the text of the licenses,
* or the following URLs:
@netpro2k
netpro2k / gist:709570
Created November 22, 2010 05:39
libfreenect homebrew formula
# install homebrew (details here: https://github.com/mxcl/homebrew/wiki/installation or just run the following command)
ruby -e "$(curl -fsSL https://gist.github.com/raw/323731/install_homebrew.rb)"
# install xcode: http://developer.apple.com/technologies/xcode.html
# install homebrew formulas (this should eventually be in official homebrew repo)
cd /usr/local/Library/Formula
curl --insecure -O "https://github.com/OpenKinect/libfreenect/raw/master/platform/osx/homebrew/libfreenect.rb"
curl --insecure -O "https://github.com/OpenKinect/libfreenect/raw/master/platform/osx/homebrew/libusb-freenect.rb"