2
votes
3answers
79 views
Finding a logic bug in converting Python code to PHP
The input 7|12|1|14|2|13|8|11|16|3|10|5|9|6|15|4 returns 0 by the PHP -code, while 1 by Python code: 1 means that the sums of the 4x4 magic square are the same, while 0 means the r …
0
votes
2answers
37 views
PHPs call_user_func_array in Python
Is there an equivilant in Python for PHPs call_user_func_array?
1
vote
2answers
78 views
Convert Python for -loop to PHP
How can you convert the following code to PHP?
summat = [sum(arra[i:i+4]) for i in range(0,len(arra),4)]
My attempt
$summat = array()
foreach ( range(0, $arra.length, 4) as $i) …
1
vote
7answers
205 views
php developer - what language next? [closed]
Possible Duplicates:
Java or Python for an intermediate PHP guy. Career advice.
What Should I Learn After PHP?
I've been developing in PHP for about 6 or 7 years now. B …
1
vote
2answers
71 views
secure and efficient file uploader
I am looking for a decent file uploader. I'm using django, but while i don't NEED a django file uploader, python is preferable. php would also be fine.
can anyone point me in the …
2
votes
4answers
218 views
Send and receive messages via (libpurple) messenger protocols
I had an idea that would require me be able to send and receive messages via the standard messenger protocols such as msn, icq, aim, skype, etc...
I am currently only familiar wit …
0
votes
1answer
69 views
Converting Python code to PHP
What is the following Python code in PHP?
import sys
li = range(1,777);
def countFigure(li, n):
m = str(n);
return str(li).count(m);
# counting figures
for subs …
2
votes
2answers
45 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 anywa …
12
votes
17answers
660 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 …
1
vote
5answers
122 views
Restrict access to images on my website except through my own htmls
Hi,
On my website I store user pictures in a simple manner such as:
"image/user_1.jpg".
I don't want visitors to be able to view images on my server just by trying user_ids. (Ex: …
-3
votes
0answers
43 views
What are some good open source ecommerce applications with subscription support? [closed]
I need an open source ecommerce application that is capable of selling digital subscriptions. Ideally, there should be a SOAP or REST interface so the application I'm selling the …
0
votes
7answers
315 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 prove …
12
votes
12answers
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?
…
2
votes
3answers
65 views
From PHP workers to Python threads
Right now I'm running 50 PHP (in CLI mode) individual workers (processes) per machine that are waiting to receive their workload (job). For example, the job of resizing an image. I …
2
votes
4answers
75 views
PHP, Python, Ruby application with multiple RDBMS
I start feeling old fashioned when I see all these SQL generating database abstraction layers and all those ORMs out there, although I am far from being old. I understand the need …
