Older Contests
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsPHP ContestsOlder Contests

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Codewalkers Forums Sponsor:
  #1  
Old June 21st, 2002, 12:11 AM
Matt Matt is offline
Contributing User
Codewalkers Specialist (4000 - 4499 posts)
 
Join Date: Apr 2007
Location: Florida
Posts: 4,158 Matt User rank is Private First Class (20 - 50 Reputation Level)Matt User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 h 12 m 16 sec
Reputation Power: 7
New Contest

A new contest is up! Happy Coding!

The winner of the "Back to the Mazes" contest will be posted tomorrow evening....

Reply With Quote
  #2  
Old June 21st, 2002, 12:12 AM
notepad notepad is offline
Codewalkers Loyal (3000 - 3499 posts)
 
Join Date: Apr 2007
Location: Central, IL USA
Posts: 3,214 notepad User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 6
Send a message via AIM to notepad
RE: New Contest

i'm readin that book right now

(the one in the new contest)

Reply With Quote
  #3  
Old June 21st, 2002, 12:50 AM
nemesis nemesis is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Saint-Petersburg, Russia
Posts: 29 nemesis User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
RE: New Contest

IMHO, it's one of the best books on the subject (at least I liked it most).
Could anyone suggest other books on PHP/DBMS?
Thanks in advance.

Reply With Quote
  #4  
Old June 21st, 2002, 04:48 AM
honcho's Avatar
honcho honcho is offline
Contributing User
Codewalkers Beginner (1000 - 1499 posts)
 
Join Date: Apr 2007
Location: Cape Cod
Posts: 1,347 honcho User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 52 m 2 sec
Reputation Power: 4
RE: New Contest

Matt, what's the memory limit on the servers you'll be using? Hopefully I'm not giving too much of my strategy away, but like most puzzles of this sort, efficiently solving it often requires large amounts of memory.

Reply With Quote
  #5  
Old June 21st, 2002, 04:54 AM
Matt Matt is offline
Contributing User
Codewalkers Specialist (4000 - 4499 posts)
 
Join Date: Apr 2007
Location: Florida
Posts: 4,158 Matt User rank is Private First Class (20 - 50 Reputation Level)Matt User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 h 12 m 16 sec
Reputation Power: 7
RE: New Contest

I will tweak the memory limit per a script up to 32MB....

Reply With Quote
  #6  
Old June 21st, 2002, 10:56 AM
annuca annuca is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 27 annuca User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
RE: New Contest

Interesting contest indeed.
I have some questions.

- Is it a requirement that the script runs on both linux and windows?

-I need more information on the php interpreter: Cofigure string, setings in php.ini (windows & linux versions) and output from phpinfo().

- Since you don't specify which extentions/modules are allowed, should I assume none or any? Relevant modules are: bc math, gmp, dba/dbm, dbase, bzip2, zlib, zip

Reply With Quote
  #7  
Old June 21st, 2002, 01:44 PM
Matt Matt is offline
Contributing User
Codewalkers Specialist (4000 - 4499 posts)
 
Join Date: Apr 2007
Location: Florida
Posts: 4,158 Matt User rank is Private First Class (20 - 50 Reputation Level)Matt User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 h 12 m 16 sec
Reputation Power: 7
RE: New Contest

both windows and linux? yes. your code should be portable.

ini settings? phpinfo() page? your code should be portable.

bc math - no
gmp - no
dba/dbm - sure
dbase - sure
bzip2 - sure
zlib - sure
zip - sure


Reply With Quote
  #8  
Old June 21st, 2002, 03:32 PM
annuca annuca is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 27 annuca User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
RE: RE: New Contest


Quote:
both windows and linux? yes. your code should be portable.
ini settings? phpinfo() page? your code should be portable.


I am going to spend a considerable amount of time on this little project. I naturally enter to win or to lose to a better opponent. I am going to provide the shortest path and optimise for speed.
I will be rather annoyed if I lose because you have compiled PHP with funny options or done strange things to php.ini.
I must be able to replicate the testing enviroment. phpinfo contains a lot of useful information, including version numbers of allowed modules. Also I request the configure string so I can see ALL the allowed modules.
I do not find it unreasonable to request a properly defined specification.

Reply With Quote
  #9  
Old June 21st, 2002, 03:43 PM
Matt Matt is offline
Contributing User
Codewalkers Specialist (4000 - 4499 posts)
 
Join Date: Apr 2007
Location: Florida
Posts: 4,158 Matt User rank is Private First Class (20 - 50 Reputation Level)Matt User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 h 12 m 16 sec
Reputation Power: 7
RE: New Contest

You are missing the point here. And that point is:

Your code should be portable.

It is as simple as that. You are on a level playing field. You know the same information that everyone else knows. I make every effort to make every script run.

Part of this challenge is to write good code. And good code should be portable to other systems.

You can trust that I have not compiled php with "funny options" or "done strange things" to php.ini. I am running standard installations of PHP. If you have questions about a particular module, please feel free to ask. I have always been happy to answer questions of the sort.

And to go a little deeper on why I won't provide a phpinfo page or compile string...because I run the code on multiple machines. Each of the scripts normally is run on three different machines. These three different machines may be tweaked in slightly different ways. Does it affect the operation of portable code? No.


Reply With Quote
  #10  
Old June 22nd, 2002, 06:32 PM
annuca annuca is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 27 annuca User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
RE: New Contest

Please provide information on the dba module:

gdbm version - same on Windows/Linux?

Same for ndbm, db2, db3 and cdb?

Any preferred dba handler or can I chose freely?

Reply With Quote
  #11  
Old June 23rd, 2002, 08:00 AM
annuca annuca is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 27 annuca User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
RE: New Contest

Please ignore last message.

The db3 handler is the standard handler on Windows and is also included in the RedHat rpm.

And gee, it is very fast.

Reply With Quote
  #12  
Old July 9th, 2002, 09:58 PM
JQRG1 JQRG1 is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Norway
Posts: 1 JQRG1 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
RE: New Contest

When will the next contest be?

Reply With Quote
  #13  
Old July 9th, 2002, 11:16 PM
Matt Matt is offline
Contributing User
Codewalkers Specialist (4000 - 4499 posts)
 
Join Date: Apr 2007
Location: Florida
Posts: 4,158 Matt User rank is Private First Class (20 - 50 Reputation Level)Matt User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 h 12 m 16 sec
Reputation Power: 7
RE: New Contest

I will have the next contest posted by the end of the week (hopefully sooner). Life has just been very hectic recently and judging the last contest is still first priority

Reply With Quote
Reply

Viewing: Codewalkers ForumsPHP ContestsOlder Contests > New Contest


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump




 Free IT White Papers!
 
Create the Optimal Architecture for your Critical Applications
Warburton's the largest independently owned bakery in the UK faced a number of difficult challenges in providing the most robust yet efficient IT infrastructure for their organization's success. IBM's services combined with their xSeries servers created the perfect platform for their SAP environment with sufficient flexibility, and did so in very time effective fashion.

Request Your Free Technology Downloads!
 
Five Best Practices for Deploying a Successful Service-Oriented Architecture
This white paper describes the benefits you can expect with SOA, and how IBM can help take your business there.

Request Your Free Technology Downloads!
 
Gartner Magic Quadrant for Application Delivery Controllers
Gartner summarizes its view on Application Delivery Controllers, evaluates strengths and weaknesses of solutions, and provides Magic Quadrant reporting for a quick comparison across all vendors. Learn from Gartner how you can benefit from an all-in-one device like Citrix NetScaler that delivers the highest levels of availability, performance and security.

Request Your Free Technology Downloads!
 
Knowledge is Power
What you don't know can hurt you, and is likely costing you money and increasing your security risks during an era of scarce resources. This white paper proposes six key strategies that enterprise security managers can use to improve their network defense posture.

Request Your Free Technology Downloads!
 
Rationalizing the Multi-Tool Environment
The rationalized multi-tool approach is flexible, scalable and cost effective. It provides the necessary input to the IT service management business processes. It preserves prior investments in monitoring tools, empowers technologists to select the best tools with which to do their jobs, and enhances effective response to incidents.

Request Your Free Technology Downloads!
 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 




© 2003-2010 by Developer Shed. All rights reserved. DS Cluster 10 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek