Codementor: why python is the best-suited programming language machine learning
Link: https://www.codementor.io/narayanapilli/why-python-is-the-best-suited-programming-language-machine-learning-yxpsouwm6
Machine Learning is the hottest trend in modern times. According to Forbes, Machine learning patents grew at a 34% rate between 2013 and 2017 and this is only set to increase in the future. And...
Link: https://www.codementor.io/narayanapilli/why-python-is-the-best-suited-programming-language-machine-learning-yxpsouwm6
Machine Learning is the hottest trend in modern times. According to Forbes, Machine learning patents grew at a 34% rate between 2013 and 2017 and this is only set to increase in the future. And...
www.codementor.io
why python is the best-suited programming language machine learning | Codementor
Machine Learning is the hottest trend in modern times. According to Forbes, Machine learning patents grew at a 34% rate between 2013 and 2017 and this is only set to increase in the future. And...
Matt Layman: Python alternative to Docker
Link: https://www.mattlayman.com/blog/2019/python-alternative-docker/
Deploying a Python app to a server is surprisingly hard. Without blinking, you’ll be dealing with virtual environments and a host of other complications.
The landscape of deployment methods is huge. W
Link: https://www.mattlayman.com/blog/2019/python-alternative-docker/
Deploying a Python app to a server is surprisingly hard. Without blinking, you’ll be dealing with virtual environments and a host of other complications.
The landscape of deployment methods is huge. W
Matt Layman
Python alternative to Docker
Are you using Python and thinking about containers to deploy your app? Before you jump to Docker, consider other package formats that may fit better. This article explores one such format from LinkedIn.
Podcast.__init__: Cultivating The Python Community In Argentina
Link: https://www.pythonpodcast.com/facundo-batista-python-community-argentina-episode-229/
The Python community in Argentina is large and active, thanks largely to the motivated individuals who manage and organize it. In this episode Facundo Batista explains how he helped to found the Pytho
Link: https://www.pythonpodcast.com/facundo-batista-python-community-argentina-episode-229/
The Python community in Argentina is large and active, thanks largely to the motivated individuals who manage and organize it. In this episode Facundo Batista explains how he helped to found the Pytho
The Python Podcast.__init__
The Python Podcast.__init__: Cultivating The Python Community In Argentina
An interview with Facundo Batista about his experiences building and growing the Python community across Argentina
Talk Python to Me: #230 Python in digital humanities research
Link: https://talkpython.fm/episodes/show/230/python-in-digital-humanities-research
You've often heard me talk about Python as a superpower. It can amplify whatever you're interested in or what you have specialized in for your career. This episode is an amazing example of this. You'l
Link: https://talkpython.fm/episodes/show/230/python-in-digital-humanities-research
You've often heard me talk about Python as a superpower. It can amplify whatever you're interested in or what you have specialized in for your career. This episode is an amazing example of this. You'l
talkpython.fm
Python in digital humanities research
You've often heard me talk about Python as a superpower. It can amplify whatever you're interested in or what you have specialized in for your career. This episode is an amazing example of this. You'll meet Cornelis van Lit. He is a scholar of medieval…
Real Python: How to Convert a Python String to int
Link: https://realpython.com/convert-python-string-to-int/
Integers are whole numbers. In other words, they have no fractional component. Two data types you can use to store an integer in Python are int and str. These types offer flexibility for working with
Link: https://realpython.com/convert-python-string-to-int/
Integers are whole numbers. In other words, they have no fractional component. Two data types you can use to store an integer in Python are int and str. These types offer flexibility for working with
Realpython
How to Convert a Python String to int – Real Python
There are several ways to represent integers in Python. In this quick and practical tutorial, you'll learn how you can store integers using int and str as well as how you can convert a Python string to an int and vice versa.
Mike Driscoll: Python Code Kata: Fizzbuzz
Link: http://www.blog.pythonlibrary.org/2019/09/18/python-code-kata-fizzbuzz/
A code kata is a fun way for computer programmers to practice coding. They are also used a lot for learning how to implement Test Driven Development (TDD) when writing code. One of the popular program
Link: http://www.blog.pythonlibrary.org/2019/09/18/python-code-kata-fizzbuzz/
A code kata is a fun way for computer programmers to practice coding. They are also used a lot for learning how to implement Test Driven Development (TDD) when writing code. One of the popular program
Mouse Vs Python
Python Code Kata: Fizzbuzz - Mouse Vs Python
Learn how to do test driven development (TDD) with Python's unittest library. In this tutorial, you will solve the famous FizzBuzz kata
Python Bytes: #148 The ASGI revolution is upon us!
Link: https://pythonbytes.fm/episodes/show/148/the-asgi-revolution-is-upon-us
Link: https://pythonbytes.fm/episodes/show/148/the-asgi-revolution-is-upon-us
pythonbytes.fm
The ASGI revolution is upon us!
News and announcements from the Python community for the week of Sep 18th, 2019
Audrey Roy Greenfeld: Voronoi Mandalas
Link: http://www.codemakesmehappy.com/2019/09/voronoi-mandalas.html
SciPy has tools for creating Voronoi tessellations. Besides the obvious data science applications, you can use them to make pretty art like this:The above was generated by this code:I started with Car
Link: http://www.codemakesmehappy.com/2019/09/voronoi-mandalas.html
SciPy has tools for creating Voronoi tessellations. Besides the obvious data science applications, you can use them to make pretty art like this:The above was generated by this code:I started with Car
Codemakesmehappy
Voronoi Mandalas
SciPy has tools for creating Voronoi tessellations. Besides the obvious data science applications, you can use them to make pretty art like ...
Wingware Blog: Viewing Arrays and Data Frames in Wing Pro 7
Link: https://wingware.com/blog/array-viewer
Wing Pro 7 introduced an array and data frame viewer that can be used to inspect data
objects in the debugger. Values are transferred to the IDE according to what portion of
the data is visible on the
Link: https://wingware.com/blog/array-viewer
Wing Pro 7 introduced an array and data frame viewer that can be used to inspect data
objects in the debugger. Values are transferred to the IDE according to what portion of
the data is visible on the
Wingware
Wing Tips: Viewing Arrays and Data Frames in Wing Pro 7 - Wing Python IDE
Wing Pro 7 introduced an array and data frame viewer that can be used to efficiently
display slices of very large data objects in the debugger.
display slices of very large data objects in the debugger.
Stack Abuse: Solving Sequence Problems with LSTM in Keras: Part 2
Link: https://stackabuse.com/solving-sequence-problems-with-lstm-in-keras-part-2/
This is the second and final part of the two-part series of articles on solving sequence problems with LSTMs. In the part 1 of the series, I explained how to solve one-to-one and many-to-one sequence
Link: https://stackabuse.com/solving-sequence-problems-with-lstm-in-keras-part-2/
This is the second and final part of the two-part series of articles on solving sequence problems with LSTMs. In the part 1 of the series, I explained how to solve one-to-one and many-to-one sequence
Stack Abuse
Solving Sequence Problems with LSTM in Keras: Part 2
This is the second and final part of the two-part series of articles on solving sequence problems with LSTMs. In the part 1 of the series, I explained how to so...
Matt Layman: Get Out, Git! - Building SaaS #33
Link: https://www.mattlayman.com/building-saas/get-out-git/
In this episode, I removed the Git clone from the server. This is some of the final cleanup to streamline the deployment process.
Before we could remove the clone completely, we had to decouple the fi
Link: https://www.mattlayman.com/building-saas/get-out-git/
In this episode, I removed the Git clone from the server. This is some of the final cleanup to streamline the deployment process.
Before we could remove the clone completely, we had to decouple the fi
Matt Layman
Get Out, Git! - Building SaaS #33
In this episode, I removed the Git clone from the server. This is some of the final cleanup to streamline the deployment process.
Will Kahn-Greene: Markus v2.0.0 released! Better metrics API for Python projects.
Link: https://bluesock.org/~willkg/blog/dev/markus_2_0_0.html
What is it?
Markus is a Python library for generating
metrics.
Markus makes it easier to generate metrics in your program by:
providing multiple backends (Datadog statsd, statsd, logging, logging ro
Link: https://bluesock.org/~willkg/blog/dev/markus_2_0_0.html
What is it?
Markus is a Python library for generating
metrics.
Markus makes it easier to generate metrics in your program by:
providing multiple backends (Datadog statsd, statsd, logging, logging ro
Will's Blog
Markus v2.0.0 released! Better metrics API for Python projects.
What is it?
Markus is a Python library for generating
metrics.
Markus makes it easier to generate metrics in your program by:
providing multiple backends (Datadog statsd, statsd, logging, logging rol
Markus is a Python library for generating
metrics.
Markus makes it easier to generate metrics in your program by:
providing multiple backends (Datadog statsd, statsd, logging, logging rol
Peter Bengtsson: uwsgi weirdness with --http
Link: https://www.peterbe.com/plog/uwsgi-weirdness-with---http
Instead of upgrading everything on my server, I'm just starting from scratch. From Ubuntu 16.04 to Ubuntu 19.04 and I also upgraded everything else in sight. One of them was uwsgi. I copied various us
Link: https://www.peterbe.com/plog/uwsgi-weirdness-with---http
Instead of upgrading everything on my server, I'm just starting from scratch. From Ubuntu 16.04 to Ubuntu 19.04 and I also upgraded everything else in sight. One of them was uwsgi. I copied various us
Peterbe
uwsgi weirdness with --http
Stuff in Peter's head
Codementor: Create a simple image search engine in OpenCV and Flask
Link: https://www.codementor.io/pknerd/create-a-simple-image-search-engine-in-opencv-and-flask-yzx2duj1w
Learn how to use OpenCV to extract image colors and then use Flask based web apps to search them.
Link: https://www.codementor.io/pknerd/create-a-simple-image-search-engine-in-opencv-and-flask-yzx2duj1w
Learn how to use OpenCV to extract image colors and then use Flask based web apps to search them.
www.codementor.io
Create a simple image search engine in OpenCV and Flask | Codementor
Learn how to use OpenCV to extract image colors and then use Flask based web apps to search them.
Codementor: Can We Do Machine Learning without python, absolutely No... Read this...
Link: https://www.codementor.io/narayanapilli/can-we-do-machine-learning-without-python-absolutely-no-read-this-yzzdhwa9k
Python has become, go programming language Around the World. From many Software companies to Consumer-based Companies. I think Almost Every Company is leveraging the Power of Python language in...
Link: https://www.codementor.io/narayanapilli/can-we-do-machine-learning-without-python-absolutely-no-read-this-yzzdhwa9k
Python has become, go programming language Around the World. From many Software companies to Consumer-based Companies. I think Almost Every Company is leveraging the Power of Python language in...
Python Circle: IP Law and Coding
Link: https://www.pythoncircle.com/post/692/ip-law-and-coding/
IP laws and coding, patenting code, code copyrights, intellectual property law and code
Link: https://www.pythoncircle.com/post/692/ip-law-and-coding/
IP laws and coding, patenting code, code copyrights, intellectual property law and code
Python Circle
IP Law and Coding
IP laws and coding, patenting code, code copyrights, intellectual property law and code
Codementor: Simple rules of good programming
Link: https://www.codementor.io/narayanap/simple-rules-of-good-programming-z07a4vvgi
Hi guys, I work as a programmer for more than 15 years and was using many different languages, paradigms, frameworks and other shit. And I want to share with you my rules of writing good...
Link: https://www.codementor.io/narayanap/simple-rules-of-good-programming-z07a4vvgi
Hi guys, I work as a programmer for more than 15 years and was using many different languages, paradigms, frameworks and other shit. And I want to share with you my rules of writing good...
Python Circle: Intellectual property Law and Coding
Link: https://www.pythoncircle.com/post/692/intellectual-property-law-and-coding/
IP laws and coding, patenting code, code copyrights, intellectual property law and code
Link: https://www.pythoncircle.com/post/692/intellectual-property-law-and-coding/
IP laws and coding, patenting code, code copyrights, intellectual property law and code
Python Circle
Intellectual property Law and Coding
IP laws and coding, patenting code, code copyrights, intellectual property law and code
PyCharm: 2019.3 EAP 2
Link: http://feedproxy.google.com/~r/Pycharm/~3/no1t0lvY0q8/
We have a new Early Access Program (EAP) version of PyCharm that can be now downloaded from our website.
New in the EAP
Support was added for namespaces coming from packages. PyCharm now recognizes n
Link: http://feedproxy.google.com/~r/Pycharm/~3/no1t0lvY0q8/
We have a new Early Access Program (EAP) version of PyCharm that can be now downloaded from our website.
New in the EAP
Support was added for namespaces coming from packages. PyCharm now recognizes n
PyCharm Blog
2019.3 EAP 2
We have a new Early Access Program (EAP) version of PyCharm that can be now downloaded from our website. New in the EAP Support was added for namespaces coming from packages. PyCharm now recognizes…
Roberto Alsina: Episodio 9: Generadores
Link: https://ralsina.me/weblog/posts/episodio-9-generadores.html
Generadores en Python ... ¿qué son? ¿Con qué se comen?
Link: https://ralsina.me/weblog/posts/episodio-9-generadores.html
Generadores en Python ... ¿qué son? ¿Con qué se comen?
Lateral Opinion
Episodio 9: Generadores
Generadores en Python ... ¿qué son? ¿Con qué se comen?