Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
Hey all. I'm a professional software developer here in Seattle, WA USA. I program for/work in a Windows shop, but I've recently began considering contributing to an Open Source project, specifically one under the Python License (CNRI Python License).
I realize that contacting a human resources representative where I work is the first step, but could any existing source forge contributors give me any advice?
Apparently the answer is that there'll be no problem with it. :) Thanks for all the help, you guys!
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 days ago.
Improve this question
Looking through the similar questions, I could not find an answer specific to this question.
My son is in the process of learning to become a back end Python developer. We're trying to find out which database framework is the most popular for employment purposes? We see Django a lot. However looking at statista.com (https://www.statista.com/statistics/1124699/worldwide-developer-survey-most-used-frameworks-web/), it's saying node.js is the most popular worldwide.
So I'm a little confused by that. Are there any professional back end Python developers who can offer some insight? Thanks in advance.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
No background in programming. I have been managing a development team (Website and Android) for past 2-3 years and I found it very interesting and got a hang of it, the problem solving and analytical thinking stuff. I have even suggested logics to the sr. developers and from that experience, I strongly believe that I can do programming.
interested in Python based web-development. So how to go about it? How to start? Should I only learn front end tools now or go simultaneously? Expecting a detailed learning path. Pls help and guide!!
Thanks in advance.
Lots of python web development courses available on Udemy. With python you can go with Flask, light weight, or Django, full featured. Just look for and pick one that fits with your level of experience.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
The main two I am considering for my CNC are sending commands through GCODE or Python as the language communicated. I know higher level languages tend to be slower but was wondering how much.
The answer is too long for a StackOverflow answer.
If you're interested in looking at real world data see this repo:
https://github.com/davepl/Primes
Dave has tests and videos about those tests if you really want to get in to it.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
In django,What is the difference between creating multiple applications and using the same application and using all models and views in the same application? Will the latter create any problems?
Divide et impera.
This is one of the basic rule of programming.
Divide your problem in smaller pieces and on the long run you will be happy:
Code re-usability
Maintenance
Elegance?
Also if you are working on an opensource project your main goal would be to find someone else who is interested in it and that could help you. It is easier to find someone interested in something really specific than to find someone who wants to adopt your super-huge app which does a lot of beautiful things that nobody else like.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I need to make an app that tells if the only face in a certain picture is that of a man or a woman
It would be better if it was done using python.
Any suggestions are welcome
I think this will solve your problem. Gender detection is what you need to do. Recently I have done gender detection using the below link and got a decent accuracy. Follow the link step by step.
http://docs.opencv.org/trunk/modules/contrib/doc/facerec/tutorial/facerec_gender_classification.html
And there is a C++ code in the above link for Face-recognizer which does this. You can get the equivalent python API's in opencv documentation.
This SO Answer has few more links and information.