Python if…else Statement : I’m going to talk about conditional structures, which will allow you to do tests and go further in programming. Conditions allow you to execute one or more instructions in one case, other instructions in another case. Conditions are an essential concept in programming. They will allow you to make a precise… Continue reading Python if else Statement
Category: Learning
YUM Install Specific Version of Package
Yum uses repositories, which are, as the name suggests, repositories that hold a set of software. Each repository must be added to Yum’s configuration to be used. By default, yum installs the latest version of a package from all versions available in the enabled repositories. For some of your projects, it is interesting to install… Continue reading YUM Install Specific Version of Package
11 Data Science podcast – The BEST podcasts About Data Science
One of the best ways to learn new things and cultivate curiosity are podcasts. We can listen to them anywhere and they are increasingly available on streaming platforms such as apple music or spotify. As the world of data science is constantly evolving, it is important to keep up to date with the latest technologies… Continue reading 11 Data Science podcast – The BEST podcasts About Data Science
Javascript Loops
There are several ways to do iterations in javascript through loops. This post explains the different looping methods that exist in Javascript. You can execute all the codes described in this post from this site: https://js.do/ It allows you to execute Javascript code directly online without installing anything! 🙂 Javascript For loop Output : Pokemon… Continue reading Javascript Loops
Javascript sleep function
How to make a function sleep for a certain period of time in Javascript? Sleep() function With the help of the Sleep() function, we can create a function to interrupt the execution of the program for a certain period of time. The problem is that in Javascript there are no sleep() functions like in other… Continue reading Javascript sleep function
HTTPS: What is HTTPS and how to migrate your website ?
HTTPS: What is HTTPS and how to migrate your website ? Today, for webmasters it is impossible to miss the Https. Whatever your level of use of the web (enlightened amateur, exalted Internet user, second-hand blogger or digital professional), you have inevitably been confronted with this protocol for securing websites. If only by seeing these… Continue reading HTTPS: What is HTTPS and how to migrate your website ?
Check if a date is today in JavaScript
How can you determine if a JavaScript Date object instance is a representation of a date/time that is “today” date? Given a Date instance, we can use thegetDate(),getMonth() and getFullYear() methods, which return the day, month and year of a date. The getDay() method returns the day of the week for the specified date according to… Continue reading Check if a date is today in JavaScript
How to replace all occurrences of a string in JavaScript
How to replace all occurrences of a string in JavaScript : The replace() method in Javascript searches within a string for a specified value or regular expression and returns a new string in which the specified values are replaced. However, if a string contains repeated words, the replace() method changes only the first occurrence of a… Continue reading How to replace all occurrences of a string in JavaScript
Pyspark join Multiple dataframes
Overview PySpark is a good python library to perform large-scale exploratory data analysis, create machine learning pipelines and create ETLs for a data platform. If you already have an intermediate level in Python and libraries such as Pandas, then PySpark is an excellent language to learn to create more scalable and relevant analyses and pipelines.… Continue reading Pyspark join Multiple dataframes
What is a dimension in google analytics ?
Dimension in google analytics This is what characterizes a visitor, for example, the visitor’s geographical origin, the version of his browser. It can also be one of the aspects of the traffic entering the site, its source, its origin. Here is an example list of dimensions on google analytics : Medium Browser Country Language Campaign… Continue reading What is a dimension in google analytics ?