Tagged Questions
0
votes
0answers
14 views
How to make a “converge point” of different connections?
I'm writing a server which accept many different connections and communicate with them. Python StreamServer provides a handle callback function to handle different connections(surly they are in ...
1
vote
0answers
55 views
Python googlemaps, GoogleMapsError: Error 610: G_GEO_BAD_KEY
I've got a problem with Python googlemaps. I've already generated api-key for server app in API Console, but I'm still getting error 610 when I'm running this part of code:
from googlemaps import ...
0
votes
1answer
78 views
How to get a list of connected clients in a server using Python epoll
I would like to send a message to a subset of clients connected to a server which uses Python epoll. Is there a practical way of getting list of fileno's of connected clients?
1
vote
0answers
79 views
Where to start on a server-side interpreter
I am experienced in php and python and have slight experience in C#. I have crated a compiler in python and now would like to work on a server-side language. However, I don't want to crate a compiler ...
1
vote
4answers
151 views
How to protect my Python program
What I want to do is protect a Python program from being stolen by people with no computer knowledge. I accept the inevitability of the program being pirated, all I want to do is protect it from ...
0
votes
1answer
138 views
Use client-side Google analytics to log server-side Django events
Does anyone have any best practice recommendations for using client side Google Analytics to log server side-triggered Django events? There are particularly granular server side events that I wish to ...
-2
votes
1answer
82 views
What server-side language do I choose for cross platform application [closed]
I'm embarking on uncharted territory and am about to leave the comforts of Windows and .Net. I'm mid-savvy with Linux and am running nginx and nodejs today.
The requirements I have is to be able to ...
0
votes
1answer
73 views
FQL query by server side
I do not understand how I can do: I have to do some queries on facebook by my server: I created a token with app_facebook_id and SECRET_KEY, my server starts to make these queries using FQL but I get ...
1
vote
2answers
129 views
login to Facebook without user interaction
I would like to perform the login procedure to Fecebook on my server using python script :
when I start my server he logs on to facebook using my private account. (ie without user interaction), you ...
1
vote
1answer
94 views
Server side form validation GAE without django
I have a form designed in google app engine, and I've got some javaascript to do client side form validation, but I'm not using django in my project (for the life of me I can't figure out how to get ...
-2
votes
2answers
68 views
Third-party web developers. Should I care which server-side language they use (ie PHP, Ruby, Python, etc)? [closed]
I'm working a project where an external development team will be asked to build a beta of a new web service. Even though it's a beta as well as being functionally operable it also needs to demonstrate ...
3
votes
5answers
574 views
How to create a file and append data from html page ?
I have an html file on my desktop that takes some input. How would I go about writing that input into a file onto my computer? Would I have to use another language to do it (i.e python or javascript?) ...
-1
votes
2answers
108 views
The right way to use python in web development [closed]
What is the right way to use a server-side language to create a website? Do I have to write every webpage in python (print "" etc.) or should I use the server-side just when i want to access a ...
1
vote
1answer
482 views
Android client connecting to Python server side code on Apache
I am finished with an Android client code, its working; and for the time being the data that was supposed to be received from apache http server was emulated to get data from sd card.
Now, I am ...
1
vote
0answers
101 views
Renewing the user's access token and posting while the user is offline
I have a Facebook app that handles most interactions with Facebook on the client side, however, I need to eventually post to the user's wall while the user is offline. I am currently storing the ...