Forum: Assembly Jan 29th, 2009 |
| Replies: 1 Views: 350 I am taking a class in Assembly this semester and am currently at a loss. The first two projects I found easy enough but now we are working with strings. I have a basic skeleton for the program that... |
Forum: Python Dec 11th, 2008 |
| Replies: 1 Views: 2,077 I need to write a Python program which parses webpages and returns a dictionary of unique words and their frequenies. What I came up with was #!/usr/bin/env python
from HTMLParser import HTMLParser,... |
Forum: PHP Dec 4th, 2008 |
| Replies: 2 Views: 653 It was quotes around the date format string. Why does the obvious always become obvious only after you ask for help? |
Forum: PHP Dec 4th, 2008 |
| Replies: 2 Views: 653 I am trying to insert a date into a mysql table field using
<?php
$date=date(Y-m-d);
mysql_query("INSERT INTO table VALUES('$date')");
?>
but when I open up mysql and run SELECT * FROM... |
Forum: Python Sep 2nd, 2008 |
| Replies: 2 Views: 481 Thanks, I actually realized my problem, I was running the program
python lab1.py getty.txt
instead of
python lab1.py < getty.txt
It works like that.... |
Forum: Python Sep 2nd, 2008 |
| Replies: 2 Views: 481 I know this is a homework question, but I have reached the end of my rope and really need guidance. I have had four years of Java programming then walked into my CS 3 class and was given an... |