Tagged Questions
46
votes
5answers
3k views
How to translate between programming languages
I am setting out to do a side project that has the goal of translating code from one programming language to another. The languages I am starting with are PHP and Python (Python to PHP should be ...
41
votes
6answers
18k 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 ...
30
votes
13answers
3k 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 ...
27
votes
31answers
53k views
Python vs PHP, Python runs slower? [closed]
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 ...
26
votes
11answers
22k views
Python VS PHP, Differences?
I'm already proficient in PHP and Javascript, but for a project a client is insisting that it be done in Python instead. Its a good opportunity, so I've agreed to learn Python.
My questions are:
...
26
votes
18answers
14k views
Best PHP/Ruby/Python e-commerce solution [closed]
I'm looking for an easy-to-skin and customizable 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 ...
25
votes
4answers
1k views
Should one minify server code when it's in production? [closed]
When it comes to the frontend code you always minify it (remove white spaces, comments etc) in production.
Should one do the same with server code? I usually have a lot of comments in my server ...
22
votes
18answers
2k 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 ...
21
votes
3answers
17k views
Calling Python in PHP
I have a Python script I recently wrote that I call using the command line with some options. I now want a very thin web interface to call this script locally on my Mac.
I don't want to go through ...
20
votes
4answers
649 views
MD5 hash discrepancy between Python and PHP?
I'm trying to create a checksum of a binary file (flv/f4v, etc) to verify the contents of the file between the server and client computers. The application that's running on the client computer is ...
19
votes
6answers
383 views
Is python exception handling more efficient than PHP and/or other languages?
I have it drilled into my head that (at least in PHP) it is badbadmojo to use try... catch blocks for flow control. What I've learned is to use them only to handle unexpected errors, not determine ...
17
votes
11answers
1k 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 ...
16
votes
2answers
3k views
Whether to use “SET NAMES”
In reading "High performance MySQL" from O'Reilly I've stumbled upon the following
Another common garbage query is SET
NAMES UTF8, which is the wrong way to
do things anyway (it does not ...
16
votes
6answers
1k 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 ...
15
votes
9answers
3k views
Best Python book for a lifelong PHP developer?
I've been coding in PHP for almost ten years, but I've lately become interested in Python. What Python book would you recommend?
14
votes
3answers
5k views
Simple User management example for Google App Engine?
I am newbie in Google App Engine. While I was going through the tutorial, I found several things that we do in php-mysql is not available in GAE. For example in dataStore auto increment feature is not ...
13
votes
9answers
809 views
Web application admin generators
Since Symfony 1.x's admin generator, I found this kind of tool really useful to prototype applications, show something very quickly to customers etc.
Now for Symfony2, admin generator does not seems ...
13
votes
6answers
2k 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. ...
13
votes
13answers
6k 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 ...
12
votes
5answers
424 views
What are the benefits (and drawbacks) of a weakly typed language?
I'm a big fan of PHP and it's obviously a very weakly-typed language. I realize some of the benefits include the general independence of changing variable types on the fly and such.
What I'm ...
12
votes
9answers
784 views
How do you use scripting language (PHP, Python, etc) to improve your productivity?
I'm a Delphi developer on the Windows platform, recently read the PHP tutorial at W3CSchools, it looks interesting.
We all know scripting languages are very good at web site development, but I also ...
12
votes
2answers
1k views
Does PHP have an equivalent to Python's list comprehension syntax?
Python has syntactically sweet list comprehensions:
S = [x**2 for x in range(10)]
print S;
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
In PHP I would need to do some looping:
$output = array();
$Nums = ...
11
votes
6answers
215 views
Embed python/dsl for scripting in an PHP web application
I'm developing an web based application written in PHP5, which basically is an UI on top of a database. To give users a more flexible tool I want to embed a scripting language, so they can do more ...
11
votes
8answers
11k views
php vs python. scalability
Why is PHP considered more scalable than python?
I've heard may times that one of the reasons PHP is "better" than python is that PHP is more easily scalable, and that Yahoo proves that(assumig Yahoo ...
10
votes
8answers
454 views
PHP devs that moved to Python, is the experience better?
I'm planning on moving to Python and I have a couple of additional questions along with the title:
did you have more fun with python?
are you as productive as when you're using PHP?
what made you ...
10
votes
8answers
473 views
Is it possible to use multiple programming languages on one webiste
Suppose i have one webiste with simple pages in php like
page1.php
page2.php
Now there is one page where i want some detailed functioning and i want to use python for that and it will look like
...
10
votes
5answers
5k 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 ...
9
votes
6answers
257 views
Detect if .swf has transparent background
Is there a way to do this programmatically in PHP, Python or Java?
Use case:
User uploads .swf through an upload form.
Detect if it has a transparent background.
If it does, change it to something ...
9
votes
6answers
949 views
Python vs PHP speed
I want to solve a problem from Project Euler (BTW, problem 25), and I found a solution in Python:
fibonacci = 1
old1 = 0
old2 = 1
limit = 1000
i = 1
while len(str(fibonacci)) < limit:
...
9
votes
3answers
1k views
How to prevent my site page to be loaded via 3rd party site frame of iFrame
How can I find out that my page is embedded as a frame to other site during page loading? I guess referrer request header can't help me here? Thanks.
9
votes
8answers
4k views
Opensource Online IDE [closed]
There're several online IDEs for PHP and some even for Python, but is there any open-source online IDE like IDEone that supports atleast the major languages (PHP, Python, Ruby etc..)?
9
votes
3answers
3k views
Algorithms for named entity recognition
I would like to use named entity recognition (NER) to find adequate tags for texts in a database.
I know there is a Wikipedia article about this and lots of other pages describing NER, I would ...
8
votes
2answers
3k views
Detect “overall average” color of the picture
I have a picture (jpg file, for example).
I need to know "overall average" the color of the picture. I mean the prevailing color in this picture. I can not strictly furmulate my task.
I will cite an ...
8
votes
8answers
319 views
Which web technology to learn for an experienced C++ developer?
Friends,
I've got some exp in c++ and now kind of starting my way to J2EE (to survive:))). Meanwhile, I've got a plan to venture in to a web portal my own. But with very little experience in web ...
8
votes
5answers
694 views
Character Sets explained for Dummies!
I don't think i fully understand character sets so i was wondering if anyone would be kind enough to explain it in layman's terms with examples ( for Dummies).I know there is utf8, latin1(ISO 8859-1), ...
8
votes
4answers
379 views
A web framework where AJAX was not an after thought
AJAX is a pain in the ass because it essentially means you'll have to write two sets of similarish code: one for browsers with JavaScript enabled and those without.
Not only this, but you have to ...
8
votes
3answers
2k views
Opensource Voting System
I'm planning to build a community-driven website with voting functionality similar to StackOverflow (or Digg etc..). I really like SO's voting system where your points are deducted for voting down ...
8
votes
5answers
3k views
How do I programmatically check whether an image (PNG, JPEG, or GIF) is corrupted?
Okay. So I have about 250,000 high resolution images. What I want to do is go through all of them and find ones that are corrupted. If you know what 4scrape is, then you know the nature of the images ...
8
votes
4answers
2k views
PHP equivalent to Python's yield operator
In Python (and others), you can incrementally process large volumes of data by using the 'yield' operator in a function. What would be the similar way to do so in PHP?
For example, lets say in ...
8
votes
2answers
4k views
unpacking an array of arguments in php
Python provides the "*" operator for unpacking a list of tuples and giving them to a function as arguments, like so:
args = [3, 6]
range(*args) # call with arguments unpacked from a list
...
8
votes
4answers
9k views
Parsing and generating Microsoft Office 2007 files (.docx, .xlsx, .pptx)
I have a web project where I must import text and images from a user-supplied document, and one of the possible formats is Microsoft Office 2007. There's also a need to generate documents in this ...
7
votes
3answers
98 views
Scalable clipping mask
I need to to clip variablesized images into puzzle shaped pices like this(not squares): http://www.fernando.com.ar/jquery-puzzle/
I have considered the posibility of doing this with a php library ...
7
votes
1answer
203 views
How is memory management in PHP different from that in Python?
What is the difference in how they are handled?
Specifically, why is it common to find Python used in production-level long lived applications like web-servers while PHP isn't given their similar ...
7
votes
3answers
180 views
Programmatically analyze CSS layout
I would like to spider a few blogs and programmatically analyze their html and css-based layouts to see e.g. if the sidebar is to the left or right of the main content, how many columns and how wide ...
7
votes
5answers
2k views
Do i need node.js in Python like I would with PHP?
I have been using PHP for some time now. And I have been thinking about learning node.js to go along with it to use the non blocking idea for creating an online game or app. There is quite a bit of ...
7
votes
2answers
2k views
what is for Python as 'explode' is for PHP
I had a string which is stored in a variable myvar="Rajasekar SP" . I want to split it with delimiter like we do using explode in PHP. But dont know the alternative for the explode in python. Please ...
7
votes
9answers
594 views
Are Interfaces just “Syntactic Sugar”?
I've been playing mostly with PHP and Python.
I've been reading about Interfaces in OO programming and can't see an advantage in using it.
Multiple objects can implement the same interface, but ...
7
votes
6answers
315 views
From the web to games
I'm a basic web developer. I know PHP, a little bit of Python and Ruby. JavaScript as well [some stuff]. I'm not a hardcore developer. I know what it takes do develop most of web cases.
Now, I have ...
7
votes
5answers
2k views
Python's equivalent to PHP's strip_tags?
Python's equivalent to PHP's strip_tags?
http://php.net/manual/en/function.strip-tags.php
7
votes
5answers
645 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 ...