by Gill Bates - April 24 2018
This template is perfect for creating a simple blogging site. The blog content is written as Markdown. This makes it a fast and HTML-safe way to quickly crank out blog posts. There is also a useful contact form which saves contacts in the database. The template even has a RSS route so people can subscribe to your blog feed.
Read more
by Gill Bates - September 28 2016
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi vel lorem gravida, sodales ipsum sit amet, convallis elit. Nulla facilisi. Praesent eros sapien, porta vel lacus condimentum, elementum varius nunc. Nam tellus ante, lacinia nec dolor quis, ornare tristique ante. Integer sit amet turpis non arcu sollicitudin mattis.
Hello world in Basic
10 PRINT "Hello World!"
20 GOTO 10
Read more
by Steve Blogs - July 25 2016
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi vel lorem gravida, sodales ipsum sit amet, convallis elit. Nulla facilisi. Praesent eros sapien, porta vel lacus condimentum, elementum varius nunc. Nam tellus ante, lacinia nec dolor quis, ornare tristique ante.
Hello world in Objective-C
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSLog (@"Hello, World!");
[pool drain];
return 0;
}
Read more