How to increment/decrement a variable in bash(shell scripting)?
Overview In this tutorial, we will see how we can increment/decrement a variable value in bash(shell scripting). There are a couple of ways to modify a variable value, we will try to cover them all…
https://thecodingbot.com/how-to-increment-decrement-a-variable-in-bashshell-scripting/
Overview In this tutorial, we will see how we can increment/decrement a variable value in bash(shell scripting). There are a couple of ways to modify a variable value, we will try to cover them all…
https://thecodingbot.com/how-to-increment-decrement-a-variable-in-bashshell-scripting/
The Coding Bot
How to increment/decrement a variable in bash(shell scripting)? - The Coding Bot
In this tutorial, we will see different ways to increment/decrement a variable in bash/shell scripting
What is -eq in a bash(shell script)?
Overview -eq in bash(shell scripting) is a binary comparison operator which is used for arithmetic value comparison(i.e comparison of two integers). The general syntax is: INTEGER_1 -eq INTEGER_2 # INTEGER_1 is equal to INTEGER_2 Here,…
https://thecodingbot.com/what-is-eq-in-a-bashshell-script/
Overview -eq in bash(shell scripting) is a binary comparison operator which is used for arithmetic value comparison(i.e comparison of two integers). The general syntax is: INTEGER_1 -eq INTEGER_2 # INTEGER_1 is equal to INTEGER_2 Here,…
https://thecodingbot.com/what-is-eq-in-a-bashshell-script/
The Coding Bot
What is -eq in a bash(shell script)? - The Coding Bot
In this quick tutorial, we will learn about -eq in bash(shell scripting), which is a binary comparision operator.
Different type of looping in Python
Overview In programming, a loop is a sequence of instructions that are continuously repeated until certain condition(s) is(are) met. The condition is often known as the terminating condition. In python, the Loops are broadly classified…
https://thecodingbot.com/different-type-of-looping-in-python/
Overview In programming, a loop is a sequence of instructions that are continuously repeated until certain condition(s) is(are) met. The condition is often known as the terminating condition. In python, the Loops are broadly classified…
https://thecodingbot.com/different-type-of-looping-in-python/
The Coding Bot
Different type of looping in Python - The Coding Bot
In this article, we will talk about for and while loop. Under for loop, we will discuss about range(), xrange() and other important functions
Loops in Bash(Shell scripting)
Introduction In programming, a loop is a sequence of instructions that are continuously repeated till the certain condition(s) is(are) met. The condition is often known as the terminating condition. In bash scripting, we have different loop formats which…
https://thecodingbot.com/loops-in-bashshell-scripting/
Introduction In programming, a loop is a sequence of instructions that are continuously repeated till the certain condition(s) is(are) met. The condition is often known as the terminating condition. In bash scripting, we have different loop formats which…
https://thecodingbot.com/loops-in-bashshell-scripting/
The Coding Bot
Loops in Bash(Shell scripting) - The Coding Bot
In this tutorial, we will learn about looping in bash(shell scripting). We will also discuss the the controlling statements like break and continue.
Excellent resource to learn about telecom, LTE, 3G, 2G etc sharetechnotes.com
***Detect face using Machine Learning and Deep Learning in Python*** https://machinelearningmastery.com/how-to-perform-face-detection-with-classical-and-deep-learning-methods-in-python-with-keras/
Conditional formatting and styling in a Pandas Dataframe
Overview Since 0.17, Pandas provide support for the styling of the Dataframe. We can now style the Dataframe based on the conditions on the data. Thanks to Pandas. In this article, we will focus on…
https://thecodingbot.com/conditional-formatting-and-styling-in-a-pandas-dataframe/
Overview Since 0.17, Pandas provide support for the styling of the Dataframe. We can now style the Dataframe based on the conditions on the data. Thanks to Pandas. In this article, we will focus on…
https://thecodingbot.com/conditional-formatting-and-styling-in-a-pandas-dataframe/
The Coding Bot
Conditional formatting and styling in a Pandas Dataframe - The Coding Bot
Overview Since version 0.17, Pandas provide support for the styling of the Dataframe. We can now style the Dataframe based on the conditions on the data. Thanks to Pandas. In this article, we will focus on the same. We will look at how we can apply the conditional…
Forwarded from Computer Programming
One of the member requested tutorials on combinatorics. Here's list of resources on the same:
Basics of combinatorics:
1. https://www.topcoder.com/community/competitive-programming/tutorials/basics-of-combinatorics/
2.Maths for competitive programming:
https://www.topcoder.com/community/competitive-programming/tutorials/mathematics-for-topcoders/
3. Advanced tutorial(dp+combinatorics) :
https://codeforces.com/blog/entry/54154
Where to find problems on combinatorics?
1. https://a2oj.com/category?ID=90
2. https://codeforces.com/problemset?tags=combinatorics
3. https://www.codechef.com/tags/problems/combinatorics
Happy coding(thecodingbot.com, t.me/computerprogrammingcodingbot)
Basics of combinatorics:
1. https://www.topcoder.com/community/competitive-programming/tutorials/basics-of-combinatorics/
2.Maths for competitive programming:
https://www.topcoder.com/community/competitive-programming/tutorials/mathematics-for-topcoders/
3. Advanced tutorial(dp+combinatorics) :
https://codeforces.com/blog/entry/54154
Where to find problems on combinatorics?
1. https://a2oj.com/category?ID=90
2. https://codeforces.com/problemset?tags=combinatorics
3. https://www.codechef.com/tags/problems/combinatorics
Happy coding(thecodingbot.com, t.me/computerprogrammingcodingbot)
A nice blog on Mathematics for competitive programming
https://www.topcoder.com/community/competitive-programming/tutorials/mathematics-for-topcoders/
https://www.topcoder.com/community/competitive-programming/tutorials/mathematics-for-topcoders/
Topcoder
Community - Competitive Programming - Competitive Programming Tutorials - Mathematics for Topcoders Content
How to colour a specific cell in pandas dataframe based on its position?
Overview For this particular problem, we are going to use a feature of pandas known as conditional formatting. I have written a pretty detailed tutorial on conditional formatting in pandas in great detail which you…
https://thecodingbot.com/how-to-colour-a-specific-cell-in-pandas-dataframe-based-on-its-position/
Overview For this particular problem, we are going to use a feature of pandas known as conditional formatting. I have written a pretty detailed tutorial on conditional formatting in pandas in great detail which you…
https://thecodingbot.com/how-to-colour-a-specific-cell-in-pandas-dataframe-based-on-its-position/
The Coding Bot
How to colour a specific cell in pandas dataframe based on its position? - The Coding Bot
In this tutorial, we will see how we can color a specific cell in a pandas dataframe based on its location.
LeetCode – 177. Nth Highest Salary
Problem Statement Write a SQL query to get the nth highest salary from the Employee table. +----+--------+ | Id | Salary | +----+--------+ | 1 | 100 | | 2 | 200 | | 3 | 300 | +----+--------+…
https://thecodingbot.com/leetcode-177-nth-highest-salary/
Problem Statement Write a SQL query to get the nth highest salary from the Employee table. +----+--------+ | Id | Salary | +----+--------+ | 1 | 100 | | 2 | 200 | | 3 | 300 | +----+--------+…
https://thecodingbot.com/leetcode-177-nth-highest-salary/
The Coding Bot
LeetCode - 177. Nth Highest Salary - The Coding Bot
In this tutorial, we will see how we can solve leetcode 177 nth highest salary problem...
A very detailed tutorial on autocompletion with Django and jQuery
Introduction Have you ever wondered how you type something in the search bar and suddenly you start getting suggestions? This feature has always been in my todo list and I finally implemented it a few days back in my own website.…
https://thecodingbot.com/a-very-detailed-tutorial-on-autocompletion-with-django-and-jquery/
Introduction Have you ever wondered how you type something in the search bar and suddenly you start getting suggestions? This feature has always been in my todo list and I finally implemented it a few days back in my own website.…
https://thecodingbot.com/a-very-detailed-tutorial-on-autocompletion-with-django-and-jquery/
The Coding Bot
A very detailed tutorial on autocompletion with Django and jQuery - The Coding Bot
In this tutorial, we will see how to implement autocomplete feature in django framework, we will also see how we can add onclick redirect functionality.
Common Machine Learning Algorithms explanation along with codes in Python as well as R https://www.analyticsvidhya.com/blog/2017/09/common-machine-learning-algorithms/
Analytics Vidhya
Top 10 Machine Learning Algorithms in 2026
Learn about 10 machine learning algorithms that are transforming data analysis and shaping the future of computing. Read Now!
LeetCode – 176. Second Highest Salary
Problem Statement Write a SQL query to get the second highest salary from the Employee table. +----+--------+ | Id | Salary | +----+--------+ | 1 | 100 | | 2 | 200 | | 3 | 300…
https://thecodingbot.com/leetcode-176-second-highest-salary/
Problem Statement Write a SQL query to get the second highest salary from the Employee table. +----+--------+ | Id | Salary | +----+--------+ | 1 | 100 | | 2 | 200 | | 3 | 300…
https://thecodingbot.com/leetcode-176-second-highest-salary/
The Coding Bot
LeetCode – 176. Second Highest Salary - The Coding Bot
In this tutorial, we will see different approaches to solve leetcode 176 second highest salary problem in MYSQL.
***Competitive Programming***
Almost 1000 problems for newcomers to be good upto Div2-D in Codeforces by Dr Mostafa Saad Ibrahim https://goo.gl/unDETI
Almost 1000 problems for newcomers to be good upto Div2-D in Codeforces by Dr Mostafa Saad Ibrahim https://goo.gl/unDETI
Google Docs
Junior Training Sheet V7.0 - <<<READ row 34 to make your own EDITABLE COPY>>>
How to prepare for ACM-ICPC? Detailed blogpost here https://www.geeksforgeeks.org/how-to-prepare-for-acm-icpc/
GeeksforGeeks
How to prepare for ACM - ICPC? - GeeksforGeeks
Your All-in-One Learning Portal: GeeksforGeeks is a comprehensive educational platform that empowers learners across domains-spanning computer science and programming, school education, upskilling, commerce, software tools, competitive exams, and more.
145 algorithms list along with C++ code snippet http://e-maxx.ru/algo/
**Note**
The site is in russian and you will need to translate it using the google translate.
**Note**
The site is in russian and you will need to translate it using the google translate.
How to add comments within SQL statements?
Overview Comments are the text notes that are written by the developer to add explanatory information about the source code. The purpose of adding comments to the source code is to make it easier to…
https://thecodingbot.com/how-to-add-comments-within-sql-statements/
Overview Comments are the text notes that are written by the developer to add explanatory information about the source code. The purpose of adding comments to the source code is to make it easier to…
https://thecodingbot.com/how-to-add-comments-within-sql-statements/
The Coding Bot
How to add comments within SQL statements? - The Coding Bot
In this tutorial, we will see how we can add single as well as mult-line comments within SQL statements...
Mean of range in an array
Problem Statement Given an array of N integers. You are given q queries. Write a program to print floor value of mean in range l to r for each query in a new line. Examples…
https://thecodingbot.com/mean-of-range-in-an-array/
Problem Statement Given an array of N integers. You are given q queries. Write a program to print floor value of mean in range l to r for each query in a new line. Examples…
https://thecodingbot.com/mean-of-range-in-an-array/
The Coding Bot
Mean of range in an array - The Coding Bot
In this tutorial, we'll see how we can find mean of a range of values in an array for multiple queries, we'll also see the optimization using prefix sum...