It’s natural to feel regret, but it is also important to reflect on our regrets and learn from them. In this blog post, we’ll be exploring the effects of regret, the impact it can have on our lives, and how we can use it as an opportunity to learn and grow. We’ll look at why…
Thinking Outside the Box: Creative Problem-Solving with Critical Thinking
In this blog post, we will explore the concept of critical thinking and its role in fostering creativity and problem-solving. We will look at how critical thinking can help to identify biases and challenge conventions, explore alternative ideas and solutions, and broaden perspectives. We will also discuss the importance of developing critical thinking skills, such…
Assertiveness: A Crucial Skill for Children’s Personal Growth
Raising children is no easy task. It requires patience, consistency, and a lot of guidance. As parents, we have the responsibility to teach our children the important skills they will need to live successful and rewarding lives. One such skill is assertiveness. Assertiveness is a form of communication which involves expressing oneself openly and honestly,…
Els nens no son responsables de les emocions dels altres
A vegades, quan parlem amb els nens, utilitzem frases que poden pensar als nens que son responsables de les emocions dels adults. En aquest article t’explico quines frases son, i quins problemes hi ha en utilitzar-les.
Children are not responsible for other people’s emotions
Sometimes, when we talk to our kids, we use phrases that can make them feel responsible for the emotions of adults. In this article, I explain which phrases and what problems there are in using them. Do these phrases sound familiar to you? You’ve told your daughter three times to pick up the toy she…
3rd-grade & Karatsuba multiplication Algorithms
In this post we’re going to study the third-grade algorithm to compute the product of two numbers, and we’re going to compare it with a much more efficient algorithm: The Karatsuba multiplication algorithm. Did you know that these two algorithms are the ones used in the built in Python multiplication? We will talk about the Order…
How to create a WordPress theme from scratch (I)
The intuitive WordPress has become the most popular CMS (Content Management System), both by individuals and by companies. The fact that this platform is used in 25% of the Internet websites certify its undeniable popularity, and at the same time helps to understand why developers not using WordPress are wasting a huge opportunity.
Install and Configure the Atom Editor for Python
In this post we’ll talk about the Atom editor which is, as they say, A hackable text editor for the 21st Century. It’s a really nice, open source and modern editor, with a broad community that provides different and new packages and functionalities. Have you tried it yet? Here, you’ll learn how to install it and how to…
Selenium Tutorial: Web Scraping with Selenium and Python
Imagine what would you do if you could automate all the repetitive and boring activities you perform using internet, like checking every day the first results of Google for a given keyword, or download a bunch of files from different websites. In this post you’ll learn to use Selenium with Python, a Web Scraping tool…
7 tips to Time Python scripts and control Memory & CPU usage
When running a complex Python program that takes quite a long time to execute, you might want to improve its execution time. But how? First of all, you need the tools to detect the bottlenecks of your code, i.e. which parts take longer to execute. This way, you can concentrate in speeding these parts first. And…