View gist:e147dfd1df9bf6923637
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2015-07-08 17:37:07, Error CDiagnosticsHelper::SetSQMDatapoint: Attempting to set a datapoint in an invalid SQM session | |
2015-07-08 17:37:11, Error CallPidGenX: PidGenX function failed on this product key. (hr = 0x8a010001) | |
2015-07-08 17:37:38, Error CDiagnosticsHelper::SetSQMDatapoint: Attempting to set a datapoint in an invalid SQM session | |
2015-07-08 17:37:38, Error CDiagnosticsHelper::SetSQMDatapoint: Attempting to set a datapoint in an invalid SQM session | |
2015-07-08 17:37:40, Error CDiagnosticsHelper::SetDeferredSQMDatapoint: Attempting to set a deferred SQM datapoint in an invalid SQM session[gle=0x000000b7] | |
2015-07-08 17:37:40, Error CDiagnosticsHelper::SetDeferredSQMDatapoint: Attempting to set a deferred SQM datapoint in an invalid SQM session[gle=0x000000b7] | |
2015-07-08 17:37:44, Error CDiagnosticsHelper::SetSQMDatapoint: Attempting to set a da |
View setuperr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2015-07-09 14:13:19, Error CDiagnosticsHelper::SetSQMDatapoint: Attempting to set a datapoint in an invalid SQM session | |
2015-07-09 14:13:22, Error CallPidGenX: PidGenX function failed on this product key. (hr = 0x8a010001) | |
2015-07-09 14:13:36, Error CDiagnosticsHelper::SetSQMDatapoint: Attempting to set a datapoint in an invalid SQM session | |
2015-07-09 14:13:36, Error CDiagnosticsHelper::SetSQMDatapoint: Attempting to set a datapoint in an invalid SQM session | |
2015-07-09 14:13:38, Error CDiagnosticsHelper::SetDeferredSQMDatapoint: Attempting to set a deferred SQM datapoint in an invalid SQM session[gle=0x000000b7] | |
2015-07-09 14:13:38, Error CDiagnosticsHelper::SetDeferredSQMDatapoint: Attempting to set a deferred SQM datapoint in an invalid SQM session[gle=0x000000b7] | |
2015-07-09 14:13:41, Error CDiagnosticsHelper::SetSQMDatapoint: Attempting to set a da |
View Reflection.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for(Throwable t : e) { | |
System.out.println("Throwable: " + t); | |
Throwable cause = t.getCause(); | |
while (cause != null) { | |
System.out.println("Cause: " + cause); | |
cause = cause.getCause(); | |
} | |
} |
View gist:2859834
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ServerViewController.m | |
// HungerCraft | |
// | |
// Created by Anthony Vella on 5/31/12. | |
// Copyright (c) 2012 Aurora High School. All rights reserved. | |
// | |
#import "ServerViewController.h" | |
#import "DetailsViewController.h" |
View gist:2859856
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// DetailsViewController.m | |
// HungerCraft | |
// | |
// Created by Anthony Vella on 5/31/12. | |
// Copyright (c) 2012 Aurora High School. All rights reserved. | |
// | |
#import "DetailsViewController.h" |
View DetailsViewController.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// DetailsViewController.m | |
// HungerCraft | |
// | |
// Created by Anthony Vella on 5/31/12. | |
// Copyright (c) 2012 Aurora High School. All rights reserved. | |
// | |
#import "DetailsViewController.h" |
View gist:2864801
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath | |
{ | |
[self performSegueWithIdentifier:@"ShowSelectedServers" sender:indexPath]; | |
} |
View gist:2864951
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ServerViewController.m | |
// HungerCraft | |
// | |
// Created by Anthony Vella on 5/31/12. | |
// Copyright (c) 2012 Aurora High School. All rights reserved. | |
// | |
#import "ServerViewController.h" | |
#import "DetailsViewController.h" |
View gist:2865023
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// DetailsViewController.m | |
// HungerCraft | |
// | |
// Created by Anthony Vella on 5/31/12. | |
// Copyright (c) 2012 Aurora High School. All rights reserved. | |
// | |
#import "DetailsViewController.h" |
View DetailsViewController.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// DetailsViewController.h | |
// HungerCraft | |
// | |
// Created by Anthony Vella on 5/31/12. | |
// Copyright (c) 2012 Aurora High School. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> |
OlderNewer