All Questions
4 questions
5
votes
1
answer
955
views
What is the most efficient way to implement a RESTful client app?
I am working on a web application for ranking some products based on some factors.
The user send a search query to 5 restful webservices which by their turn send a response in a JSON format and ...
4
votes
2
answers
119
views
Is there any good/fundamental reason that Python classvars, and JavaScript prototype inheritance, don't mutate the parent on assignment?
In Python, if you have a classvar, it's accessible from an instance, but if you set the variable on the instance it doesn't actually change the classvar, rather it assigns a new name which shadows the ...
-1
votes
1
answer
92
views
Would I need a web framework if the app is running locally and not in the net?
I need to make an Employee Payroll application and the client specifically stated that the application will run on their computer locally and will not be hosted anywhere in the internet.
I can code ...
-2
votes
1
answer
661
views
Choosing the right architecture for my web application
I've started working on my web application and I'm stuck at the design stage. I cannot decide which web technologies would be the most suited to this project. Let me explain what I want to achieve:
1)...