The popular open-source contract for web designers and developers by Stuff & Nonsense
- Originally published: 23/12/2008
- Revised date: 15/12/2013
- Original post
# Header 1 # | |
## Header 2 ## | |
### Header 3 ### (Hashes on right are optional) | |
#### Header 4 #### | |
##### Header 5 ##### | |
## Markdown plus h2 with a custom ID ## {#id-goes-here} | |
[Link back to H2](#id-goes-here) | |
This is a paragraph, which is text surrounded by whitespace. Paragraphs can be on one |
@interface MyClass:NSObject | |
{ | |
SystemSoundID mySound; | |
} | |
@implementation MyClass | |
- (void) viewDidLoad { | |
[super viewDidLoad]; | |
NSString *soundPath = [[NSBundle mainBundle] pathForResource:@"changeTrack" ofType:@"aif"]; | |
AudioServicesCreateSystemSoundID((CFURLRef)[NSURL fileURLWithPath: soundPath], &mySound); |
# the IP(s) on which your node server is running. I chose port 3000. | |
upstream app_server { | |
server 127.0.0.1:3000; | |
keepalive 64; | |
} | |
# the nginx server instance | |
server { | |
listen 80; | |
server_name #{servername}; |
server { | |
listen 80; | |
server_name server_name; | |
access_log /var/log/app/access.log; | |
error_log /var/log/app/error.log; | |
# https://docs.djangoproject.com/en/dev/howto/static-files/#serving-static-$ | |
location /static { # STATIC_URL | |
alias /path/to/app/static; # STATIC_R$ |
#if __IPHONE_OS_VERSION_MIN_REQUIRED <= __IPHONE_6_1 | |
//code here | |
#endif |