Tagged Questions
-4
votes
0answers
75 views
Project suggestions for a beginner [closed]
I'm a rather beginner in Python and looking for project ideas. I don't want to reinvent the wheel and I just can't think of any ideas for a project which hasn't been implemented before. Also I want to ...
0
votes
0answers
41 views
data handling with javascript
Python has a very neat package called pandas which allows for quick data transformation; tables, aggregation, that sort of thing. A lot of these types of functionality can also be found in the python ...
1
vote
1answer
183 views
Where to start in developing a game engine as a web app
I have to create a web application, preferably I would host that on Google App Engine. it is a multiplayer game, So it needs to be interactive. I am only familiar with C/C++ coding, and have started ...
3
votes
5answers
479 views
Would Python be too slow for client-side use in Browsers?
I've heard the statement that Python would be too slow to be of any use in browsers.
I reckon Javascript is only superior in this aspect because of companies like Google who need it fast (and made it ...
1
vote
4answers
658 views
NodeJS as an avenue towards learning JavaScript [closed]
I'm a backend programmer who works mainly in Python. I'll probably never want to be a full time front end developer, but with the goal of growing my skill set, I would like to become at least passably ...
9
votes
8answers
1k views
Do I have to learn html and javascript to create web applications?
I am an experienced Java programmer, and I want to create a complex web application requiring dynamic pages, drawings, etc (take SO as an example). Do I have to learn javascript/html in order to ...
-1
votes
2answers
236 views
Where can I learn more about JavaScript and Python? [closed]
Been teaching myself how to code over the past four months or so -- mainly in JavaScript, but just started Python -- and had a revelation today. I can write in JavaScript pretty well, but I don't ...
2
votes
2answers
227 views
Which web framework to use under Backbonejs?
For a previous project, I was using Backbonejs alongside Django, but I found out that I didn't use many features from Django. So, I am looking for a lighter framework to use underneath a Backbonejs ...
6
votes
5answers
583 views
Language Design: Are languages like Python and CoffeeScript really more comprehensible?
The "Verbally Readable !== Quicker Comprehension" argument on http://ryanflorence.com/2011/case-against-coffeescript/ is really potent and interesting. I and I'm sure others would be very interested ...
1
vote
3answers
203 views
Multiple attribution in Python, JS, …?
I accidentally discovered this a=b=c=d=e=f=2 in python(2.7)(and JavaScript a few minutes later) interpreter .
Is this a feature or just the way the interpreter works, if is a feature how it is ...
1
vote
2answers
176 views
How to get started with this project?
I recently finished my C++ programming class, and I'll start school in september. There is a limited online Parking spot registration and it always gets filled very quickly.
I would like to create a ...
4
votes
4answers
1k views
Scripting language for filling out web form
I have a job as an intern at a technology company, I was given the unfortunate job of performing some data entry into our web management system. The information entered into the web form is stored in ...
0
votes
1answer
98 views
Handling and organizing data from save file?
I'm working on a webapp (python/javascript) to modify a game's save file. The file has certain bytes representing player information, such as the gun, the equipment, etc. The idea is to show an ...
0
votes
1answer
110 views
Using functions as statements on Python
A great feature of Javascript is function statements. You can do this:
(function myFunc(){
doSomething();
doSomethingElse();
})();
Which is a way to declare a function and call it without ...
1
vote
2answers
755 views
how to choose a web framework and javascript library?
I've been procrastinating learning some framework for web apps w/ some library for AJAX, something like django with prototype, or turbogears with mootools, or zeta components with dojo, grok, jquery, ...