No. Magic. In. Regular expressions. Absolutely.
https://rcoh.me/posts/no-magic-regular-expressions/
https://rcoh.me/posts/no-magic-regular-expressions/
rcoh.me
No Magic: Regular Expressions
The code for this post, as well as the post itself, are on github.
This post is part 1 of a 3 part series.
Part 1: Parsing Part 2: Generate an NFA Part 3: Evaluate an NFA
Until recently, regular expressions seemed magical to me. I never understood how you…
This post is part 1 of a 3 part series.
Part 1: Parsing Part 2: Generate an NFA Part 3: Evaluate an NFA
Until recently, regular expressions seemed magical to me. I never understood how you…
Here is a list of 500 algorithms. Most of them are not written in Python but anyway this is a useful and mighty collection.
https://techiedelight.quora.com/500-Data-Structures-and-Algorithms-practice-problems-and-their-solutions
https://techiedelight.quora.com/500-Data-Structures-and-Algorithms-practice-problems-and-their-solutions
A little note on copying things in Python, of course with some examples:
https://www.programiz.com/python-programming/shallow-deep-copy
https://www.programiz.com/python-programming/shallow-deep-copy
Programiz
Python Shallow Copy and Deep Copy (With Examples)
In this article, you’ll learn about shallow copy and deep copy in Python with the help of examples.
Today I want to introduce to you a wonderful tool, which some of you may already be familiar with - mitmproxy, a great man-in-the-middle proxy which you can setup in a few minutes. It's a joy to use it for the software development purposes, but you may go further%) Please, check it out:
https://mitmproxy.org/
https://mitmproxy.org/
The demystification of
range
and why it is not an iterator: http://treyhunner.com/2018/02/python-range-is-not-an-iterator/Treyhunner
Python: range is not an iterator
After my Loop Better talk at PyGotham 2017 someone asked me a great question: iterators are lazy iterables and range is a lazy iterable in Python 3, …
A little tutorial about reactive programming in Python (based on RxPy library but anyway it is useful):
https://auth0.com/blog/reactive-programming-in-python/
https://auth0.com/blog/reactive-programming-in-python/
Auth0 - Blog
Reactive Programming in Python
Learn how to use reactive programming in Python to process data streams asynchronously.
You should try the Google's ML course. It's free and available now.
https://thenextweb.com/artificial-intelligence/2018/03/05/you-can-take-googles-machine-learning-crash-course-for-free-now/
https://thenextweb.com/artificial-intelligence/2018/03/05/you-can-take-googles-machine-learning-crash-course-for-free-now/
TNW
You can take Google’s Machine Learning Crash Course for free now
Google really wants you to learn how to develop AI. It's offering the same course it gives to company engineers free to everyone now.
At last here is a logo of Europython 2018! Check the blog post for more details:
https://blog.europython.eu/post/171656128512/europython-2018-our-conference-logo
https://blog.europython.eu/post/171656128512/europython-2018-our-conference-logo
By the way, Guido van Rossum is one of the three 2018 Fellow Award honorees of the Computer History Museum (CHM) - for the creation and evolution of the Python programming language, and for leadership of its community. The CHM Fellow Awards is the Museum’s prestigious program, which has recognized such esteemed honorees as Frances Allen, Sir Tim Berners-Lee, Ed Catmull, Vint Cerf, Morris Chang, Lynn Conway, Doug Engelbart, Bjarne Stroustrup, Ken Olsen and Steve Wozniak. CHM is the world’s leading institution exploring the history of computing and its transformational impact on society. It's located in Mountain View, CA.
A few words about GIL:
https://realpython.com/blog/python/python-gil/
https://realpython.com/blog/python/python-gil/
Realpython
What is the Python Global Interpreter Lock (GIL)? – Real Python
Python's Global Interpreter Lock or GIL, in simple words, is a mutex (or a lock) that allows only one thread to hold the control of the Python interpreter at any one time. In this article you'll learn how the GIL affects the performance of your Python programs.
A little story about regular expressions and how guys used it for data investigation https://www.dataquest.io/blog/regular-expressions-data-scientists/
Dataquest
Tutorial: Python Regex (Regular Expressions) for Data Scientists
In this Python regex tutorial, learn how to use regular expressions and the pandas library to manage large data sets during data analysis.
A descriptive benchmark of memory efficiency for parallel IO operations with different syncronous and asyncronous frameworks.
https://code.kiwi.com/memory-efficiency-of-parallel-io-operations-in-python-6e7d6c51905d
https://code.kiwi.com/memory-efficiency-of-parallel-io-operations-in-python-6e7d6c51905d
Medium
Memory efficiency of parallel IO operations in Python
Python allows for several different approaches to parallel processing. The main issue with parallelism is knowing its limitations.
Here is a new draft of Think Complexity book:
http://greenteapress.com/wp/think-complexity-2e/
http://greenteapress.com/wp/think-complexity-2e/
When I hear that Machine Learning is an emerging tech field it freaks me out.
Logistic regression — 1958
Hidden Markov Model — 1960
Stochastic gradient descent — 1960
Support Vector Machine — 1963
k-nearest neighbors — 1967
Artificial Neural Networks — 1975
Expectation Maximization — 1977
Decision tree — 1986
Q-learning — 1989
Random forest — 1995
The logic seems to be: "if I didn't care about something important my whole life, but I care now, then it has to be emerging".
Logistic regression — 1958
Hidden Markov Model — 1960
Stochastic gradient descent — 1960
Support Vector Machine — 1963
k-nearest neighbors — 1967
Artificial Neural Networks — 1975
Expectation Maximization — 1977
Decision tree — 1986
Q-learning — 1989
Random forest — 1995
The logic seems to be: "if I didn't care about something important my whole life, but I care now, then it has to be emerging".
A nice overview of the new library for quick, easy and convenient html parsing created by Kenneth Reitz (the author of requests library)
https://youtube.com/watch?v=gKT_tg87H5Y
https://youtube.com/watch?v=gKT_tg87H5Y
YouTube
Requests-HTML - Checking out a new HTML parsing library for Python
Checking out a new HTML-parsing library by the author of Requests:
Requests-HTML github: https://github.com/kennethreitz/requests-html
Sample parsing page: https://pythonprogramming.net/parsememcparseface/
Chat with us on Discord: https://goo.gl/Q9euv3…
Requests-HTML github: https://github.com/kennethreitz/requests-html
Sample parsing page: https://pythonprogramming.net/parsememcparseface/
Chat with us on Discord: https://goo.gl/Q9euv3…
Here is a nice cheatsheet on
https://twitter.com/b0rk/status/981159808832286720
/proc
directory in linuxhttps://twitter.com/b0rk/status/981159808832286720
Twitter
🔎Julia Evans🔍
an amazing directory: /proc
Minimal examples of data structures and algorithms in Python
https://github.com/keon/algorithms
https://github.com/keon/algorithms
GitHub
GitHub - keon/algorithms: Minimal examples of data structures and algorithms in Python
Minimal examples of data structures and algorithms in Python - keon/algorithms