This file contains hidden or 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
#!/usr/bin/python | |
import sys | |
import os, shutil | |
import subprocess | |
import os.path | |
from datetime import datetime | |
######################## Functions ######################### |
This file contains hidden or 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
// | |
// NSDate+InternetDateTime.h | |
// MWFeedParser | |
// | |
// Created by Michael Waterfall on 07/10/2010. | |
// Copyright 2010 Michael Waterfall. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
This file contains hidden or 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
#warning REMOVE THIS BEFORE RELEASE | |
- (void)fireMemoryWarning:(NSTimer *)timer { | |
NSLog(@"<<<< posting simulated warning >>>>"); | |
[[UIApplication sharedApplication] performSelector:@selector(_performMemoryWarning)]; | |
} | |
#warning REMOVE THIS BEFORE RELEASE | |
-(void) debugWithRepeatedMemoryWarnings { | |
[NSTimer scheduledTimerWithTimeInterval:20 target:self | |
selector:@selector(fireMemoryWarning:) |
This file contains hidden or 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
--- | |
layout: default | |
title: Archives | |
--- | |
<h1>{{ page.title }}</h1> | |
<div class="archives"> | |
{% for month in page.months %} | |
<h2>{{ month | date:"%B" }} <small>{{ month | date:"%Y" }}</small></h2> | |
<ul> | |
{% for post in page.posts_by_month[month] %} |