Tagged Questions
-1
votes
1answer
78 views
Is there something like “pyvideo.org” for JavaScript?
I really enjoy conferences talks and videos. Is there something like that but for JavaScript conferences?
0
votes
1answer
54 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
89 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 ...
0
votes
2answers
201 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, ...
-1
votes
4answers
139 views
Is there such a crossplatform tool
I wanted to create an open source program for PC and mobile and I was wondering if there are such tools that allows you to write in HTML, javascript and CSS? Phonegap allows you to do it except it's ...
0
votes
3answers
199 views
Translating between Python-Django and Javascript
I have a conceptual question about 'translating' between objects I have stored in Django (in Postgres) that I want to use on the front-end. So I have a user object in Python that holds basic things: ...
10
votes
3answers
142 views
How is type checked in a dynamic language interpreter/compiler, such as JavaScript?
In dynamic languages, such as JavaScript or Python, the type of a variable is determined at runtime. This is one reason why they are slower than typed languages such as Java.
How is type checking ...
4
votes
9answers
829 views
How to become an expert in Python, PHP and Javascript? [closed]
So I've been programming for about 9ish months now, and I've taught myself some Python, some PHP and some Javascript.
I want to become better at these languages - I can hack something out, but a lot ...
6
votes
12answers
1k views
Differences between JavaScript and Python
Recently, in a job interview, I was asked what the difference between Python and Javascript is.
The interviewer had framed the question as:
Javascript is an interpreted language which runs in a ...
6
votes
2answers
280 views
Web development in a small team - best practices
Currently developing a web app in a team of two maybe three in the near future. Tech stack is at the moment : flask, mongodb, and extjs for the fontend. I currently have the project under version ...
35
votes
13answers
8k views
How does Python's handling of line-breaks differ from JavaScript's automatic semicolons?
Javascript has a feature called Automatic Semicolon Insertion where basically if the parser encounters an invalid token, and the last token before that was a line break, then the parser will insert a ...
16
votes
18answers
1k views
How do I “ease into” programming coming from a designer background?
Is there a way I can 'ease in' to programming. Like learning to use/modify CGI scripts to add some functions to a basic html site? Even if it's the only thing I learn it's still useful, right?. Unlike ...
7
votes
12answers
651 views
What are some good ways for an intermediate programmer to build skills?
Preface: I work mostly in Python, and Web Dev languages (HTML, CSS, Javascript and Jquery, PHP)
I'm proficient at coding but I want to get better. In larger more advanced projects my programming ...
7
votes
6answers
315 views
What is the historical basis of using Javascript in web programming?
I come from a scientific biology background where we also use Python a lot.
Now that I've begun to start with Web development, I've consistently found myself wondering just why it is that JavaScript ...
4
votes
9answers
416 views
One good reason for a rewrite
I have a personal web project I cut my teeth on learning how to program. I wrote it in PHP and learned as I went. I eventually I re-factored it to use MVC and removed all mixing of php/html.
Right ...