62
votes
15answers
4k views
How to find list of possible words from a letter matrix [Boggle Solver]
Lately I have been playing a game on my iPhone called Scramble. Some of you may know this game as Boggle. Essentially, when the game starts you get a matrix of letters like so:
F X I E
A M L O
E W B …
16
votes
13answers
1k views
Is switching from PHP to Python worth the trouble
If you had switched from php + (framework of choice) to python + (framework of choice) as your development platform, what would you say have been the upsides/gains of the switch?
What I want to know …
16
votes
13answers
2k views
Big Web 2.0 sites written in Python?
Hulu, Twitter, Techcrunch, etc are written in Ruby.
Yahoo, Facebook, and tons of big social networks are written in PHP.
But what are some big top-name enterprise sites written in Python?
I am going …
12
votes
17answers
785 views
Java or Python for an intermediate PHP guy. Career advice.
I'm an intermediate PHP developer looking to take up a new language. I'm completely torn as to where to go at this point. There's so many languages related to web development and programming in …
12
votes
11answers
845 views
How to convince my boss to use Django?
I have an unusual problem: I have to convince my superiors to use Django for our new project. Alternative is some PHP framework. I've programmed in PHP for 2 years and then switched to Python and have …
8
votes
6answers
553 views
How does Python OOP compare to PHP OOP?
I'm basically wondering if Python has any OOP shortcomings like PHP does. PHP has been developing their OOP practices for the last few versions. It's getting better in PHP but it's still not perfect. …
8
votes
6answers
444 views
Why avoid CGI for Python with LAMP hosting?
I have been using PHP for years. Lately I've come across numerous forum posts stating that PHP is outdated, that modern programming languages are easier, more secure, etc. etc.
So, I decided to start …
8
votes
5answers
2k views
What is a python equivalent of PHP’s var_dump()
When debugging in PHP I frequently find it useful to simply stick a var_dump($foo, $bar, ...) in my code to show me the the what a variable is, what is value is, and the same for anything that it …
8
votes
13answers
2k views
Best php/ruby/python e-commerce solution
I'm looking for an easy to skin and customize e-commerce package.
I've been reading good reviews about Magento, but it seems to have problems with performance. I've tried osCommerce before and found …
8
votes
23answers
9k views
Python vs PHP, Python runs slower?
I've heard that Python is meant to be faster than PHP in terms of Runtime, I simply took this as a given and sat down today to make a blog post about it. After being told by Vinko Vrsalovic how to …
7
votes
16answers
616 views
Learning a new web language [closed]
Possible Duplicate:
Which language to choose and when?
Coming from Java/C++ world, I am interested in learning web development. I am a bit overwhelmed by the number of languages (e.g. PHP, …
7
votes
12answers
1k views
FastCGI C++ vs. A Script Language (PHP/Python/Perl)
What are the ups and downs of using FastCGI C++ vs. PHP/Python/Perl to do the same job.
Any performance or design pitfalls or using one over the other? Even your opinions are welcome. (Tell me why …
6
votes
5answers
245 views
Why the trailing slash in the web service is so important?
I was testing a web service in PHP and Python. The address of the web service was, let's say, http://my.domain.com/my/webservice. When I tested the web service in PHP using that URL everything worked …
6
votes
5answers
934 views
How can I generate a screenshot of a webpage using a server-side script?
I need a server-side script (PHP, Python) to capture a webpage to a PNG, JPG, Tiff, GIF image and resize them to a thumbnail.
What is the best way to accomplish this?
See also:
Web Page …
6
votes
4answers
263 views
How to Make sure the code is still working after refactoring ( Dynamic language)
How to make sure that code is still working after refactoring ( i.e, after variable name change)?
In static language, if a class is renamed but other referring class is not, then I will get a …
