Published on January 9, 2013
From CP/M to MSDOS to Windows to Linux to Mac OS X
Published on October 10, 2012
Notes on how I came to where I am as a software developer
Published on September 30, 2012
Some notes on using Django Forms, ModelForms and BetterForms
Published on September 27, 2012
Key: h9ckawgep8u88rxxpjpjnvpz
Application: jcg espn api fun
Key: h9ckawgep8u88rxxpjpjnvpz
Shared Secret: mYz6Jpzmx3G4qJEFe3dbvH7n
Status: active
Registered: 4 months ago
Key Rate Limits 3 Calls per second 7,500 Calls per day
jgoldstick p4s
Published on September 25, 2012
I plan to deploy this site to Amazon Web Services (AWS) and serve static content with S3. Here are my notes
Published on September 24, 2012
sudo /etc/init.d/apache2 restart
tail /var/apache2/log/access.log
Published on September 21, 2012
This is the original documentation
Published on September 21, 2012
There is a site here that lets you type in text to produce unicode text using substitute characters that look similar enough to ascii to be read.
Published on September 20, 2012
Here is the code in models.py for the blog application
from django.db import models from django.contrib import admin from markdown import markdown import datetime from django.contrib.auth.models import User from tagging.fields import TagField # Create your models here. class BlogPost(models.Model): title = models.CharField ...
Published on September 20, 2012
This is to get mod_wsgi to run
Published on September 20, 2012
I am making a weblog using the code in Practical Django Projects as a guide