Be the Boss: The Player Guide to Beating the House in Blackjack

In this comprehensive guide, we unveil strategies and tips that empower you to take charge at the blackjack table and maximize your chances of beating the house.

Why Choose Linux?

Image from Knoldus Blogs If you’re only familiar with the windows operating system, it’s time to be introduced to something more interesting…” Linux”. A brief history Linus Torvalds, a student at the University of Helsinki started a personal project to create an open-source operating system similar to MINIX, a UNIX …

Different methods to create a text file in Linux terminal

In this article I will show you 7 different methods to create a new file in Linux using terminal. The touch command is used for changing the timestamp of a file. But it can also be used to create a new empty file using the following command: touch yourfilename If …

Set Swappiness Value Centos 7 to enhance system performance

What is Swap Memory ? Swap memory is virtual memory which provide redundancy to the main memory of the system. Generally we provide twice of RAM memory to the SWAP but not often. Swappiness Value? Swappiness is the value after which the system start utilizing the SWAP memory. By default …

LINUX- CHEAT SHEET

#uname Displays Linux system information #uname -rDisplays kernel release information #uptimeDisplays how long the system has been running #hostnameShows the system hostname #hostname -iDisplays the IP address of the system #last rebootShows system reboot history #dateDisplays current system date and time #whoamiDisplays who you are logged in as #finger usernameDisplays …

What are exit codes in Linux?

An exit code in Linux represents the result of the execution of a command or script. It has a scale ranging from 0 to 255. The exit codes help us determine whether a process ran: Successfully. Failed due to an error. Or another state that implies an unexpected outcome. As …

Top 20 most used Linux commands

Hello there!! 👻 If you are searching for mostly commonly used Linux commands as a beginner to linux, then you are at a right place. Before diving into main section, please make a note that Linux is case sensitive because ‘doc’ and ‘Doc’ are different as far as the OS …

Netflix’s Big Data Architecture

Six rectangular tiles organized in neat horizontal bands define most of our days .These carefully curated images change with some regularity, as to not get stale, but only give the illusion that we have a choice of TV shows and movies to watch. They’re chosen for us. So,Netflix utilizes data …

Linux command: lsof (List Open Files)

An overview of the Linux “lsof” command The lsof command stands for List Open Files and shows open files and which process uses them. In Linux, everything is in the form of files. Sometimes, especially for troubleshooting purposes, we need to know which files are currently used by what processes, …

3 incredibly useful Linux commands you NEED to KNOW!

Linux with its versatile command line is my go-to OS for software development. Here are 3 command line tools I commonly use for development and which I recommend you to try out! 1. grep The #1 command line tool I use during development is grep . Basically it’s a simple …