Peter Bengtsson: Fastest Python function to slugify a string
Link: https://www.peterbe.com/plog/fastest-python-function-to-slugify-a-string
In MDN I noticed a function that turns a piece of text (Python 2 unicode) into a slug. It looks like this:
non_url_safe = ['"', '#', '$', '%', '&', '+',
',', '/', ':', ';', '=
Link: https://www.peterbe.com/plog/fastest-python-function-to-slugify-a-string
In MDN I noticed a function that turns a piece of text (Python 2 unicode) into a slug. It looks like this:
non_url_safe = ['"', '#', '$', '%', '&', '+',
',', '/', ':', ';', '=
Peterbe
Fastest Python function to slugify a string
Stuff in Peter's head
Roberto Alsina: Episodio 7: Python 1000x más rápido!
Link: https://ralsina.me/weblog/posts/episodio-7-python-1000x-mas-rapido.html
¿Es posible agarrar código al azar y hacer que funcione 1000 veces más rápido?
La verdad es que casi nunca. Pero a veces sí.
Link: https://ralsina.me/weblog/posts/episodio-7-python-1000x-mas-rapido.html
¿Es posible agarrar código al azar y hacer que funcione 1000 veces más rápido?
La verdad es que casi nunca. Pero a veces sí.
Lateral Opinion
Episodio 7: Python 1000x más rápido!
¿Es posible agarrar código al azar y hacer que funcione 1000 veces más rápido?
La verdad es que casi nunca. Pero a veces sí.
La verdad es que casi nunca. Pero a veces sí.
Stack Abuse: Solving Sequence Problems with LSTM in Python's Keras Library
Link: https://stackabuse.com/solving-sequence-problems-with-lstm-in-pythons-keras-library/
In this article, you will learn how to perform time series forecasting that is used to solve sequence problems.
Time series forecasting refers to the type of problems where we have to predict an outco
Link: https://stackabuse.com/solving-sequence-problems-with-lstm-in-pythons-keras-library/
In this article, you will learn how to perform time series forecasting that is used to solve sequence problems.
Time series forecasting refers to the type of problems where we have to predict an outco
Stack Abuse
Solving Sequence Problems with LSTM in Python's Keras Library
In this article, you will learn how to perform time series forecasting that is used to solve sequence problems. Time series forecasting refers to the type of problems where we have to predict an outcome based on time dependent inputs. A typical example of…
Data School: Should you use "dot notation" or "bracket notation" with pandas?
Link: https://www.dataschool.io/pandas-dot-notation-vs-brackets/
If you've ever used the pandas library in Python, you probably know that there are two ways to select a Series (meaning a column) from a DataFrame:
# dot notation
df.col_name
# bracket notation
df['c
Link: https://www.dataschool.io/pandas-dot-notation-vs-brackets/
If you've ever used the pandas library in Python, you probably know that there are two ways to select a Series (meaning a column) from a DataFrame:
# dot notation
df.col_name
# bracket notation
df['c
Data School
Should you use "dot notation" or "bracket notation" with pandas?
There are two ways to select a Series from a DataFrame: "dot notation" and "bracket notation" (square brackets). Find out which one you should use, and why!
NumFOCUS: Highlights From The 2019 Pandas Hack
Link: https://numfocus.org/blog/highlights-from-the-2019-pandas-hack
The post Highlights From The 2019 Pandas Hack appeared first on NumFOCUS.
Link: https://numfocus.org/blog/highlights-from-the-2019-pandas-hack
The post Highlights From The 2019 Pandas Hack appeared first on NumFOCUS.
NumFOCUS
Highlights From The 2019 Pandas Hack - NumFOCUS
Taking place simultaneously in Austin, Bentonville, and Dallas, the Pandas Hack was a weekend hackathon focused on pandas
TechBeamers Python: Python Heapq (With Examples)
Link: https://www.techbeamers.com/python-heapq/
This tutorial intends to train you on using Python heapq. It is a module in Python which uses the binary heap data structure and implements Heap Queue a.k.a. Priority Queue algorithm. Interestingly, t
Link: https://www.techbeamers.com/python-heapq/
This tutorial intends to train you on using Python heapq. It is a module in Python which uses the binary heap data structure and implements Heap Queue a.k.a. Priority Queue algorithm. Interestingly, t
TechBeamers
Python Heapq Explained
Quickly learn about Python Heapq and call its functions to add/remove elements with O(log n), and create Priority Queues with examples.
Weekly Python StackOverflow Report: (cxciv) stackoverflow python report
Link: http://python-weekly.blogspot.com/2019/09/cxciv-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2019-09-14 20:44:02 GMTHow to create a list of dictionaries from a dict
Link: http://python-weekly.blogspot.com/2019/09/cxciv-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2019-09-14 20:44:02 GMTHow to create a list of dictionaries from a dict
Blogspot
(cxciv) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week. Between brackets: [ question score / answers count] Build date: 2019...
Samuel Sutch: Python Programming Language Is Considered Better Than Other Languages
Link: http://ssutch.org/python-programming-language-is-considered-better-than-other-languages/
Python is a high-level scripting language. It is easy to learn and powerful than other languages because of its dynamic nature and simple syntax which allow small lines of code. Included indentation a
Link: http://ssutch.org/python-programming-language-is-considered-better-than-other-languages/
Python is a high-level scripting language. It is easy to learn and powerful than other languages because of its dynamic nature and simple syntax which allow small lines of code. Included indentation a
Samuel Sutch: Why Python Has Become an Industry Favorite Among Programmers
Link: http://ssutch.org/why-python-has-become-an-industry-favorite-among-programmers/
With the world stepping towards a new age of technology development, it isn’t hard to imagine a future that will be full of screens. And if so be the case then, demand for people with strong programmi
Link: http://ssutch.org/why-python-has-become-an-industry-favorite-among-programmers/
With the world stepping towards a new age of technology development, it isn’t hard to imagine a future that will be full of screens. And if so be the case then, demand for people with strong programmi
Programiz: How to get current date and time in Python?
Link: https://www.programiz.com/python-programming/datetime/current-datetime
In this article, you will learn to get today's date and current date and time in Python. We will also format the date and time in different formats using strftime() method.
Link: https://www.programiz.com/python-programming/datetime/current-datetime
In this article, you will learn to get today's date and current date and time in Python. We will also format the date and time in different formats using strftime() method.
Programiz
How to get current date and time in Python? (With Examples)
In this tutorial, you will learn to get today's date and current date and time in Python with the help of examples.
Mike Driscoll: PyDev of the Week: Veronica Hanus
Link: http://www.blog.pythonlibrary.org/2019/09/16/pydev-of-the-week-veronica-hanus/
This week we welcome Veronica Hanus (@veronica_hanus) as our PyDev of the Week! Veronica is a regular tech speaker at Python and other tech conferences and meetups. You can see some of her talks and h
Link: http://www.blog.pythonlibrary.org/2019/09/16/pydev-of-the-week-veronica-hanus/
This week we welcome Veronica Hanus (@veronica_hanus) as our PyDev of the Week! Veronica is a regular tech speaker at Python and other tech conferences and meetups. You can see some of her talks and h
The Mouse Vs. The Python
PyDev of the Week: Veronica Hanus - The Mouse Vs. The Python
This week we welcome Veronica Hanus (@veronica_hanus) as our PyDev of the Week! Veronica is a regular tech speaker at Python and other tech conferences and meetups. You can see some of her talks and her schedule on her website. She has been active in the…
Reuven Lerner: Last change to join Weekly Python Exercise: Beginner objects
Link: https://lerner.co.il/2019/09/16/last-change-to-join-weekly-python-exercise-beginner-objects/
If you have been using Python, but don’t quite understand how and when to write and use the language’s object-oriented facilities, then I have good news and bad news:
Good news: The new cohort of WPE
Link: https://lerner.co.il/2019/09/16/last-change-to-join-weekly-python-exercise-beginner-objects/
If you have been using Python, but don’t quite understand how and when to write and use the language’s object-oriented facilities, then I have good news and bad news:
Good news: The new cohort of WPE
Reuven Lerner
Last change to join Weekly Python Exercise: Beginner objects — Reuven Lerner
If you have been using Python, but don’t quite understand how and when to write and use the language’s object-oriented facilities, then I have good news and bad news: Good news: The new cohort of WPE: Beginner objects starts tomorrow, and includes 15 weekly…
Real Python: PyGame: A Primer on Game Programming in Python
Link: https://realpython.com/pygame-a-primer/
When I started learning computer programming late in the last millennium, it was driven by my desire to write computer games. I tried to figure out how to write games in every language and on every pl
Link: https://realpython.com/pygame-a-primer/
When I started learning computer programming late in the last millennium, it was driven by my desire to write computer games. I tried to figure out how to write games in every language and on every pl
Realpython
PyGame: A Primer on Game Programming in Python – Real Python
In this step-by-step tutorial, you'll learn how to use PyGame. This library allows you to create games and rich multimedia programs in Python. You'll learn how to draw items on your screen, implement collision detection, handle user input, and much more!
TechBeamers Python: Python Multiple Inheritance (with Examples)
Link: https://www.techbeamers.com/python-multiple-inheritance/
In this tutorial, we’ll describe Python Multiple Inheritance concept and explain how to use it in your programs. We’ll also cover multilevel inheritance, the super() function, and focus on the method
Link: https://www.techbeamers.com/python-multiple-inheritance/
In this tutorial, we’ll describe Python Multiple Inheritance concept and explain how to use it in your programs. We’ll also cover multilevel inheritance, the super() function, and focus on the method
TechBeamers
Python Multiple Inheritance (with Examples)
This tutorial describes Python multiple inheritance, explains multilevel inheritance, and the super() function with the help of examples.
NumFOCUS: Introducing Our Newest Corporate Sponsorship Prospectus
Link: https://numfocus.org/blog/introducing-our-newest-corporate-sponsorship-prospectus
The post Introducing Our Newest Corporate Sponsorship Prospectus appeared first on NumFOCUS.
Link: https://numfocus.org/blog/introducing-our-newest-corporate-sponsorship-prospectus
The post Introducing Our Newest Corporate Sponsorship Prospectus appeared first on NumFOCUS.
NumFOCUS
Introducing Our Newest Corporate Sponsorship Prospectus - NumFOCUS
NumFOCUS introduces our latest tool in seeking corporate support for our mission of serving open-source data science projects.
Stack Abuse: Reading and Writing YAML to a File in Python
Link: https://stackabuse.com/reading-and-writing-yaml-to-a-file-in-python/
Introduction
In this tutorial, we're going to learn how to use the YAML library in Python 3. YAML stands for Yet Another Markup Language.
In recent years it has become very popular for its use in stor
Link: https://stackabuse.com/reading-and-writing-yaml-to-a-file-in-python/
Introduction
In this tutorial, we're going to learn how to use the YAML library in Python 3. YAML stands for Yet Another Markup Language.
In recent years it has become very popular for its use in stor
Stack Abuse
Reading and Writing YAML to a File in Python
In this tutorial, we're going to learn how to use the YAML library in Python 3. YAML stands for Yet Another Markup Language. In recent years it has become ver...
Rene Dudfield: post modern C tooling - draft
Link: http://renesd.blogspot.com/2019/09/post-modern-c-tooling.html
DRAFT - I'm still working on this, but it's already useful and I'd like some feedback - so I decided to share it early. In 2001 or so people started using the phrase "Modern C++". So now that it's
Link: http://renesd.blogspot.com/2019/09/post-modern-c-tooling.html
DRAFT - I'm still working on this, but it's already useful and I'd like some feedback - so I decided to share it early. In 2001 or so people started using the phrase "Modern C++". So now that it's
Blogspot
post modern C tooling - draft 6
Contemporary C tooling for making higher quality C, faster or more safely. DRAFT 0 - 10/11/18, DRAFT 1 - 9/16/19, 7:19 PM, I'm still...
Roberto Alsina: Episodio 8: Complejo y Complicado
Link: https://ralsina.me/weblog/posts/episodio-8-complejo-y-complicado.html
Un intento (probablemente fallido) de explicar complejidad algorítmica, o por lo menos lo más básico del tema sin complicarla demasiado.
Link: https://ralsina.me/weblog/posts/episodio-8-complejo-y-complicado.html
Un intento (probablemente fallido) de explicar complejidad algorítmica, o por lo menos lo más básico del tema sin complicarla demasiado.
Lateral Opinion
Episodio 8: Complejo y Complicado
Un intento (probablemente fallido) de explicar complejidad algorítmica, o por lo menos lo más básico del tema sin complicarla demasiado.
Moshe Zadka: Adding Methods Retroactively
Link: https://orbifold.xyz/singledispatch.html
The following post was originally published on
OpenSource.com
as part of a series on seven libraries that help solve common problems.
Imagine you have a "shapes" library.
We have a Circle class,
a Squ
Link: https://orbifold.xyz/singledispatch.html
The following post was originally published on
OpenSource.com
as part of a series on seven libraries that help solve common problems.
Imagine you have a "shapes" library.
We have a Circle class,
a Squ
orbifold.xyz
Orbifolds and Other Games - Adding Methods Retroactively
Codementor: Top programming languages of 2019
Link: https://www.codementor.io/narayanapilli/top-programming-languages-of-2019-ywjp77uce
The most popular languages according to the world’s largest organization for engineering and applied science.
It can be hard to gauge which programming language to learn — should you go for the...
Link: https://www.codementor.io/narayanapilli/top-programming-languages-of-2019-ywjp77uce
The most popular languages according to the world’s largest organization for engineering and applied science.
It can be hard to gauge which programming language to learn — should you go for the...