Skip to content

Instantly share code, notes, and snippets.

View nicktoumpelis's full-sized avatar
🎯
Focusing

Nick Toumpelis nicktoumpelis

🎯
Focusing
View GitHub Profile
@nicktoumpelis
nicktoumpelis / git-make-empty-root.sh
Last active April 2, 2025 06:35
Create an empty initial commit
git checkout --orphan temp_master
git rm -rf .
git commit --allow-empty -m 'Make initial root commit'
git rebase --onto temp_master --root master
git branch -D temp_master
@nicktoumpelis
nicktoumpelis / BugSenseDemoAppDelegate.m
Created October 7, 2011 18:34
BugSense iOS API Call
#import <BugSense-iOS/BugSenseCrashController.h>
- (BOOL) application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
//...
NSDictionary *myCustomData = [NSDictionary dictionaryWithObjectsAndKeys:@"myObject", @"myKey", nil];
BugSenseCrashController *crash =
[BugSenseCrashController sharedInstanceWithBugSenseAPIKey:@"<Your BugSense API Key>"
userDictionary:myCustomData
sendImmediately:NO];
//...