Skip to content

Instantly share code, notes, and snippets.

View forgot's full-sized avatar

Jesse Cox forgot

View GitHub Profile
@forgot
forgot / index.html
Created March 30, 2020 06:28
poJGRbK
<div class="container">
<div class="col" style="margin-top: 20px;">
<div class="row">
<div class="col border">
<h1 class="display-1 text-center" id="cases_val">#</h1>
<h1 class="display-4 text-center">Cases Reported</h1>
</div>
<div class="col border">
<h1 class="display-1 text-center" id="deaths_val">#</h1>
<h1 class="display-4 text-center">Deaths</h1>
@forgot
forgot / CocoaLumberjack Line Number LogFormatter.md
Last active August 29, 2015 14:01
CocoaLumberjack Line Number LogFormatter

All credit goes to Stack Overflow user UrK for the answer here: http://stackoverflow.com/a/19311779/862224

@interface LineNumberLogFormatter : NSObject<DDLogFormatter>

- (NSString *)formatLogMessage:(DDLogMessage *)logMessage;

@end

@implementation LineNumberLogFormatter
- (NSString *)formatLogMessage:(DDLogMessage *)logMessage
@forgot
forgot / gist:11370536
Last active August 29, 2015 14:00
Test

###This is a test Seeing if it works using

NSString *myCoolString = [NSString stringWithFormat:@"Freaking Sweet String!"];

- (void) makeItBetter:(NSString *)awesomify {
myCoolString = [NSString stringWithFormat:@"%@ Awesome!", myCoolString];
}