Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Technology Blogs  >  LikeGeeks technology Blog  > 

Likegeeks Blog


likegeeks.com
Learn About Linux, Server Administration, Python, iOS Development and Tech Tips That You Will Need Daily And How To Do It Like Geeks
Convert Pandas DataFrame To NumPy Array
2022-10-25 09:33
Pandas & NumPy are the two most common data analysis libraries that data science professionals leverage for handling a large amount of structured data of various types that reside in a t… Read More
20+ Examples Of Filtering Pandas DataFrame
2022-10-09 09:26
Data filtering has become an integral phase of data analysis wherein we have to study the data to exclude, sort, rearrange, extract specific data, or apportion data according to certain crit… Read More
Python Defaultdict Tutorial
2022-07-23 16:46
A Python dictionary is used to store key-value pairs and is the implementation for hash maps in Python. Each key in a Python dictionary is unique and can be only of an immutable data ty… Read More
Manage Multiple Python Versions Using Pyenv
2022-07-16 06:35
Have you ever wondered how you or your team will manage to contribute to a project that supports multiple versions of Python? You might not be sure about how you will easily test these proje… Read More
LRU Cache In Python (Simple Examples)
2022-07-06 07:44
Often, speed & high performance come into our mind when we hear the term cache. In general, cache memory boosts the transfer speed when the RAM interacts with the processor via register… Read More
Python Deque Tutorial (Simple Examples)
2022-06-29 16:12
Data structures play a significant role in arranging data in a specific format or order. Deque is a data structure that has a wide range of real-life applications. In general, the deque is a… Read More
Python Discord Bot Tutorial
2022-05-28 08:37
Discord bots are programs that allow automated interaction with Discord services. They can be programmed to do simple tasks, such as play music or print a welcome message, or they can perfor… Read More
Python Print() Function Tutorial
2022-04-23 12:01
In Python, the print function is a powerfully useful tool if you know how to utilize it. The print() function is used to have statements written into the terminal of a program. How… Read More
Python PDF Processing Tutorial
2022-02-08 12:01
PDF or Portable Document Format first was introduced by Adobe, but now the International Organization for Standardization (ISO) maintains it and it is an open standard. Some of the main comp… Read More
How To Round Numbers In Python
2022-01-31 18:32
This tutorial touches upon one of basic fundamental practices – rounding numbers in Python. Rounding off is a basic yet essential mathematical function that people use to make calculat… Read More
Python Time Module (Simple Examples)
2022-01-18 17:58
Python’s time module plays a fundamental part in many applications of computer science. It allows you to perform some major functions efficiently and concisely. You can calculate the p… Read More
Lists VS Tuples In Python
2022-01-11 14:14
Python introduces four built-in data types that let you hold a collection of objects or values: list, tuple, dictionary, and set. These are arguably the most versatile data structures that c… Read More
Sort NumPy Arrays In Python
2022-01-02 13:57
Many of Python’s popular libraries use NumPy under the hood as a fundamental pillar of their infrastructure. Beyond slicing, dicing, and manipulating arrays, the NumPy library offers v… Read More
Python NumPy Arange() Tutorial
2021-12-27 13:16
NumPy library offers a wide range of functions and, arange function is one of the most used methods. The arange function is used to create evenly spaced values and then returns the reference… Read More
CSV Processing Using Python
2021-08-13 19:32
Throughout this tutorial, we will explore methods for reading, writing, and editing CSV (Comma-Separated Values) files using the Python standard library “csv”. Due to the popular… Read More
Remove Punctuation Using Python
2021-08-07 19:13
If you have ever worked processing a large amount of textual data, you would know the pain of finding and removing irrelevant words or characters from the text. Doing this job manually, even… Read More
JSON Processing Using Python
2021-07-19 13:20
In this tutorial, you’ll learn various JSON processing techniques such as load JSON objects, write, sort JSON, or parse JSON, etc. JSON stands for JavaScript Object Notation that repre… Read More
2021-07-14 16:08
In this tutorial, you will learn about Python math functions in the math module of Python. Mathematical calculations are always required in any type of project. However, the math module does… Read More
Generate Random Numbers In Python
2021-06-21 11:23
There are two types of random number generators: pseudo-random number generator and true random number generator.Pseudorandom numbers depend on computer algorithms. The computer uses algorit… Read More
Python Priority Queue (Step By Step Guide)
2021-06-11 09:42
A queue is a data structure that retrieves data items in an order called FIFO (first in first out). In FIFO, the first inserted element will be popped out first from the queue. The Prio… Read More
A Foolproof Guide To Infinity In Python
2021-03-31 10:19
Numbers are an integral part of programming. Hence, programming languages support various datatypes to represent different kinds of numbers and provide various methods to work with them. Eac… Read More
11 Amazing NumPy Shuffle Examples
2021-03-25 11:12
Python’s NumPy package offers various methods that are used to perform operations involving randomness, such as the methods to randomly select one or more numbers from a given list of… Read More
NumPy Meshgrid From Zero To Hero
2021-03-09 08:26
Python’s NumPy is the most commonly used library for working with array/matrix data. A matrix can be viewed as a 2-dimensional ‘grid’ of values, where the position of each… Read More
3D Plotting In Python Using Matplotlib
2021-02-26 16:28
Data visualization is one such area where a large number of libraries have been developed in Python. Among these, Matplotlib is the most popular choice for data visualization. While initiall… Read More
Python Correlation Matrix Tutorial
2020-06-17 14:19
In this blog, we will go through an important descriptive statistic of multi-variable data called the correlation matrix. We will learn how to create, plot, and manipulate correlation matric… Read More
NumPy Where Tutorial (With Examples)
2020-05-20 14:12
Looking up for entries that satisfy a specific condition is a painful process, especially if you are searching it in a large dataset having hundreds or thousands of entries. If you know the… Read More
2020-02-18 11:00
We’d all like to save money with shared hosting, but for some websites, VPS or even dedicated plans are unavoidable. If you do end up having to spring for a more advanced plan, it pro… Read More
15+ Examples For Yum Update Command
2020-02-12 14:09
Yum is a package manager used on Red Hat, CentOS, and other Linux distributions that use RPM Package Manager. Yum is used to install, update, delete, or otherwise manipulate the packages in… Read More
2020-01-02 08:55
We have all more or less accepted that we are living in some kind of dime-store George Orwell novel where our every movement is tracked and recorded in some way. Everything we do today, esp… Read More
15+ Examples For Linux CURL Command
2019-12-09 13:15
In this tutorial, we will cover the cURL command in Linux. Follow along as we guide you through the functions of this powerful utility with examples to help you understand everything it&rsq&helli…Read More
SSH Port Forwarding (tunneling) In Linux
2019-12-04 13:17
In this tutorial, we will cover SSH port forwarding in Linux. This is a function of the SSH utility that Linux administrators use to create encrypted and secure relays across different syst… Read More
Grep Command In Linux (With Examples)
2019-11-27 14:13
In this tutorial, you will learn how to use the very essential grep command in Linux. We’re going to go over why this command is important to master, and how you can utilize it in you… Read More
Python Standard Deviation Tutorial
2019-11-19 13:32
The standard deviation allows you to measure how spread out numbers in a data set are. Large values of standard deviations show that elements in a data set are spread further apart from the… Read More
15+ Examples For Listing Users In Linux
2019-10-15 13:29
In this post, you will learn about listing users in Linux. Besides this, you will know other tricks about Linux users’ characteristics. There are 2 types of users in Linux, system use… Read More
2019-08-30 10:59
With the costs of attacks rising all the time, data integrity isn’t an area to cut costs or lose focus. From the annoyance of resource wastage via crypto-mining to the existential thr… Read More
MySQL On Linux (Beginners Tutorial)
2019-08-26 14:30
In this post, we will cover many aspects of MySQL on Linux. First of all, how to install it, how to perform basic CRUD operations, how to import & export data, play with the MySQL engin… Read More
How To Save Money On Tech Purchases
2019-02-26 21:21
Whether you need a new smartphone, computer, tablet, or any other tech device—chances are whatever it is, it’s going to cost you a pretty penny. Technology just isn’t cheap… Read More
Python NumPy Array Tutorial
2019-02-02 21:13
NumPy is a Python Library/ module which is used for scientific calculations in Python programming. In this tutorial, you will learn how to perform many operations on NumPy arrays such as add… Read More
PyQt5 Drawing Tutorial (Painting APIs)
2019-01-28 12:35
In this tutorial, we will learn how to draw vector graphics in PyQt5. In Python, the PyQt5 module is the easiest module you can use for drawing purposes as you will see.Before getting starte… Read More
How To Fix Packet Loss (Causes & Solutions)
2018-12-13 15:17
In 2017, 24% of surveyed companies claimed that downtimes cost them between $301,000 and $400,000, according to the Statista website. In most cases, these situations of downtimes might have… Read More

Subscribe to Likegeeks

Get updates delivered right to your inbox!

Thank you for your subscription

×