Forum: PHP
May 29th, 2008, 9:04 AM
|
|
Replies: 5
Views: 227
Re: php forum
haha, don't use flatfiles. It's incredibly obnoxious to code (what with having to seek around files) and it's generally slower than relational databases (especially while performing searches). Flat...
|
Forum: Coder's Corner Lounge
May 22nd, 2008, 1:30 PM
|
|
Replies: 2
Views: 245
Re: Do you want to give grade to your employer!!
The Better Business Bureau allows you to leave information about a business (and I think) employer - http://welcome.bbb.org/ Also a great place to search before you buy something expensive online -...
|
Forum: Coder's Corner Lounge
May 15th, 2008, 1:45 PM
|
|
Replies: 9
Views: 379
Re: Anyone a genius?
Like I said, all recursive algorithms can be written in continuation passing style - which is similar to tail recursion (and often achieves the same effects in terms of efficiency). Not everything...
|
Forum: PHP
May 15th, 2008, 10:20 AM
|
|
Replies: 2
Views: 244
Re: How to print doc to jpg
Are you sure that it's happening on the fly? They might have just made a .jpg with word or some other program, saved it, and then put it on the website... In that case, PHP wouldn't even be involved...
|
Forum: Coder's Corner Lounge
May 15th, 2008, 10:10 AM
|
|
Replies: 9
Views: 379
Re: Anyone a genius?
After having just completed two semesters of Scheme programming, I can tell you that it is indeed possible to transform any algorithm into Tail-Recursion if you use the Continuation Passing Style...
|
Forum: C++
Apr 29th, 2008, 9:33 PM
|
|
Replies: 3
Views: 212
Re: array issue
Here's something that does pretty much the same thing. I wrote it earlier this semester for my principle of programming languages class:
#include <iostream>
#include <fstream>
#include...
|
Forum: Coder's Corner Lounge
Feb 29th, 2008, 7:25 PM
|
|
Replies: 3
Views: 131
Re: Ai
I took an AI class taught in scheme last semester. It was really fun. We learned about a lot of different game playing strategies - mostly with state based learning. I wrote a short tutorial on the...
|