Posts

Showing posts with the label Article

3 Types of Backups Every IT Professional Should Know

  3 Types of Backups Every IT Professional Should Know Backups are the backbone of data protection — but not all backups are created equal. Here’s a simple breakdown of the three main types 👇 🧩 1️⃣ Full Backup Takes a complete copy of all selected data. Example: Monday’s backup includes everything. ✅ Easy to restore , ❌ Takes more time and space. 🔁 2️⃣ Incremental Backup Saves only the data that changed since the last backup (full or incremental). Example: Monday → Full Tuesday → Incremental (changes since Monday) Wednesday → Incremental (changes since Tuesday) ✅ Fast & space-efficient , ❌ Slower restore (needs full + all incrementals). ⚙️ 3️⃣ Differential Backup Saves all changes made since the last full backup. Example: Monday → Full Tuesday → Differential (changes since Monday) Wednesday → Differential (changes since Monday again) ✅ Faster restore , ❌ Uses more space than incremental.

I’ve donated blood!

I’m excited to share that I’ve donated blood! 🩸 The Power of Giving: My Blood Donation Experience Giving back to the community is important, and one of the simplest ways to do this is by donating blood. Recently, I donated blood, and I want to share my experience and why it matters. Why Donate Blood? Every two seconds, someone needs blood. It could be a person in an accident, someone having surgery, or a patient with cancer. The need for blood is always high, but sometimes there isn’t enough. When you donate blood, you help make sure that hospitals have enough for those who need it. One pint of blood can save up to three lives. This simple act can truly make a big difference in someone’s life. The Donation Process If you’ve never donated blood, the process is simple and quick. First, you register and answer a few health questions. Then, the nurse or doctor will clean your arm, put in a needle to collect the blood, and you’re done in about 10 minutes. Afterw...

Wipro: Top Contributor for Cost Savings

Top Contributor for Cost Savings Sonu Kumar Kushwaha currently holds the role of a Linux System Administrator at Wipro. In January 2025: Awarded the "Top Contributor for Cost Savings" certificate for EDOH FY 2024-25.

Sonu's Professional Journey at Wipro

Image
Sonu Kumar Kushwaha currently holds the role of a Linux System Administrator at Wipro. January 2025: Awarded the "Top Contributor for Cost Savings" certificate for EDOH FY 2024-25. January 2024: Honoured with the "Best Prodigy" Certificate for outstanding performance during FY 2023-24. Since June 2024: Entrusted with additional responsibilities for the ACCELL, ALJ, and AQUILLA CAPITAL accounts. Since October 2023: Actively contributing to the CANADAPOST and RWE accounts. Joined on April 11, 2022, with an initial focus on the MAGNETI MARELLI account. These accomplishments highlight Sonu's continuous growth and significant contributions within Wipro. Every day, I make sure our Linux systems are up-to-date and secure by applying patches. I'm also involved in incident and change management, quickly addressing issues and making changes to improve system performance. I efficiently handle service requests to ensure smooth service delivery. I regular...

Hindu Traditions

  The Joy of Birth "Namkaran" ceremony to name a new baby. Friends and family gather to bless the baby. A time of new beginnings and hopes. Growing Up and Learning "Vidyarambham" ritual marks the start of formal education. Children write their first alphabet. Valuing education is an important part of Hindu culture. Festivals Galore Multiple festivals like Diwali, Holi, and more. Bring families and friends together for fun and food. Celebrations like one big, never-ending party. Circle of Life Belief in reincarnation, where the soul is reborn after death. Celebrating the journey to a new life when a loved one passes away. Death is seen as a new beginning, not the end. The Joy of Moksha Ultimate goal of life is to achieve Moksha (liberation). Death seen as a step closer to Moksha. Similar to completing a tough level in a video game and moving to the next exciting one. Rituals and Ceremonies Last rites and cremation rituals during a person's passing. These are not ...

Responsive Web Design Certification

Image
  Responsive Web Design Certification

Foundational C# with Microsoft

Image
  Foundational C# with Microsoft

Postman Student Expert

Image
  Postman Student Expert Postman Student Experts are proficient in the essential skills involved in building and testing API requests in Postman.

Microsoft Learn Student Ambassador

Image
  Microsoft Learn Student Ambassador Learn Student Ambassadors is a global group of campus leaders who are eager to help fellow students and create robust communities. apply here  https://mvp.microsoft.com/studentambassadors

Download all links present on a webpage

Image
downloadLinks Download all links present on a webpage in a txt file by writing below code in console of the browser document .head.appendChild( Object .assign( document .createElement( 'script' ), { src: 'https://cdn.jsdelivr.net/npm/downloadlinks@0.0.6/index.js' })); OR Download all links present on a webpage in a html file by writing below code in console of the browser document .head.appendChild( Object .assign( document .createElement( 'script' ), { src: 'https://cdn.jsdelivr.net/npm/downloadlinks@0.0.6/linksInHtml.js' })); and then call this setupDownloadButton(); function it will generate a download links button, click on the button to download all the links present on that webpage. https://www.npmjs.com/package/downloadlinks https://cdn.jsdelivr.net/npm/downloadlinks https://cdn.jsdelivr.net/npm/downloadlinks@0.0.6/index.js https://cdn.jsdelivr.net/npm/downloadlinks@0.0.6/linksInHtml.js Thank You ...

httpd

to install httpd : yum install httpd to check version of httpd installed : httpd -version config location:  /etc/httpd/conf/httpd.conf /var/www/html/index.html (we need to add this file) Logs: log var/log/httpd how to start service systemctl start httpd how to check status of httpd service systemctl status httpd to check status firewall of the server systemctl status firewalld.service to stop firewall of the server systemctl stop firewalld.service

zoomit windows app

 Shortcuts ZoomIt offers a number of shortcuts which can extend its usage greatly. SHORTCUTS Function Shortcut Begin Zoom In Mode Ctrl+1 Zoom In Up Key Zoom Out Down Key Begin Drawing (While zoomed) Left-Click Begin Drawing (While not zoomed) Ctrl+2 Red Pen Color R Blue Pen Color B Yellow Pen Color Y Green Pen Color G Show Meeting Timer Ctrl + 3 Live Zoom Mode Ctrl + 4 Zoom In (Live mode) Ctrl + Up Zoom Out (Live mode) Ctrl + Down

yarn

 yarn help -------------- ... Accessing the list of commands yarn help --------------- ... Starting a new project yarn init ------------------- ... Installing all the dependencies yarn yarn install ------------- ... Adding a dependency yarn add [package] yarn add [package]@[version] yarn add [package]@[tag] ------------------ ... Adding a dependency to different categories of dependencies yarn add [package] --dev  # dev dependencies yarn add [package] --peer # peer dependencies ---------------------- ... Upgrading a dependency yarn up [package] yarn up [package]@[version] yarn up [package]@[tag] --------------- ... Removing a dependency yarn remove [package] ---------------------- ... Upgrading Yarn itself yarn set version latest yarn set version from sources

vsce

VS Code extensions   vsce login < PUBLISHER ID > then type your PUBLISHER TOKEN vsce package vsce publish

vim

     #  vim new-file.txt     i          => to insert in writing mode      :wq        => to write and quit i.e, save

sql

 ********* tables ******** users products states posts comments ********************* SELECT * FROM users SELECT * FROM users LIMIT 5 SELECT * FROM users LIMIT 5 OFFSET 2 SELECT * FROM users ORDER by users.user_email DESC SELECT user_login FROM users  SELECT user_login, user_email FROM users SELECT user_login FROM users ORDER by users.user_email DESC SELECT * FROM products WHERE price = 11.99 SELECT * FROM products WHERE price < 9.99 SELECT * FROM products WHERE book_name = "WILD" SELECT * FROM products WHERE author LIKE "%Miller%" INSERT INTO states (state,drink,year,image) VALUES ("New Jersey","Vodka",2018,"vodka.jpg") DELETE FROM `states` WHERE states.id = 33 SELECT * FROM `states` WHERE state = "Delaware" UPDATE states SET drink = "Chocolate Oat Milk" WHERE state = "Delaware" DELETE FROM states WHERE state ="floraida" INSERT INTO `facebook_users` (`ID`, `name`, `email`, `password`) VALU...

nvm

 nvm nvm version nvm install latest nvm use 15.2.0 nvm list

npm

 // To set default value npm set init.author.email "email@gmail.com" npm set init.author.name "Sonu Kumar Kushwaha" npm set init.license "MIT" ---------------------------- // To publish own package npm login npm publish

netlify

 https://app.netlify.com/start/deploy?repository=https://github.com/gatsbyjs/gatsby-starter-hello-world https://app.netlify.com/start/deploy?repository=<link to repo>

jupyter

 jupyter --version jupyter --help