Skip to main content

About Us

About TodayNotes

Welcome to TodayNotes—your premium digital handbook for mastering System and Database Administration.

In an industry that moves at lightning speed, having a reliable "cheat sheet" isn't just helpful—it’s essential. We provide high-quality, well-researched, and easy-to-digest technical notes designed to bridge the gap between complex documentation and real-world execution.


Our Mission

At TodayNotes.com, our mission is simple: To simplify the complex. We believe that learning shouldn't be a struggle. Our goal is to transform dense technical manuals into actionable insights, helping SysAdmins and DBAs worldwide solve problems faster and more efficiently.

Why Trust TodayNotes?

With millions of tech blogs out there, we stand apart by focusing on three core pillars:

  • Accuracy First: Every command, script, and configuration published here undergoes a thorough vetting process to ensure technical precision.

  • Simplified Learning: We don't just dump data. We synthesize information into "short-form notes" that prioritize your time and clarity.

  • Human-Verified Expertise: In an era of generic AI noise, TodayNotes offers content rooted in 12+ years of hands-on experience in data centers and enterprise environments.


Meet the Creator: Shalom

Founder & Lead Editor

I launched TodayNotes after noticing a significant gap in the community: there were plenty of surface-level tutorials, but very few deep-dive articles that addressed the nuances of modern administration.

With a career built in high-stakes environments—including managing a 230-rack data center—I wanted to create a space where I could share the expertise I've gathered over the years.

  • Experience: Lead Database Admin in large-scale Data Center operations.

  • Expertise: Linux Systems, DNS Management, and Database Administration.

  • Education: 

    • M.Sc. in Information Technology

    • B.E. in Electronics and Telecommunication

    • MCSA: Microsoft SQL Server 2016


Our Editorial Standards

Transparency is the foundation of our community. When you read a note on TodayNotes, you can count on:

  1. Originality: We strictly adhere to a "No-Scraping" policy. Every article is written from scratch based on real-world testing.

  2. Current Content: Information in IT expires quickly. We regularly audit our archives to ensure all commands and data reflect the latest standards of 2026.

  3. Actionable Insights: We focus on what works in production, not just what works in a lab.


Have a question or a specific topic you'd like us to cover? [Contact Us] or follow our latest updates on the blog!

Comments

Popular posts from this blog

Generate Multi Domain SSL Certificate by useing cert bot tool from Let's Encrypt.

 We are using cert bot tool to generate / create multi domain certificate from Let's Encrypt CA. we are using following command  create CSR config file to generate CSR: Example of csr file is: default_bits            = 2048  # RSA key size encrypt_key             = no  # Protect private key default_md              = sha256  # MD to use utf8                    = yes  # Input is UTF-8 string_mask             = utf8only  # Emit UTF-8 strings prompt                  = no  # Prompt for DN distinguished_name      = s...

How to Check all user logged in Linux server?

We are learning how to get all logged in user name in a Linux server you need administrative privileges to execute commands cover here.    There are many ways to list logged in user on a Linux machine. Here I am covering my three favourite  method for this purpose. All this command run with any fedora based system like Red Head Linux , Centos, Rocky Linux, Amla linux etc. 1. lastlog : you can use list command to know all login user. this command uses file available in /var/log/lastlog. This command read data from the mentioned file and present in a human readable from     You can use grep command to filter output and show only currently logged in user by following command. lastlog | grep -v 'Never' In this example we use grep -v switch to exclude all line containing Never. This way we find all currently logged in user. 2. W command : This is more preferable way to get all logged in user, it uses file mentioned on lastlog command and file situated on /proc...

Difference between static web page and dynamic web page.

  T he difference between static and dynamic web pages is an important concept to understand for anyone interested in web development or online content creation. In simple terms, a static web page is a page that is pre-built and sent to the user as-is, while a dynamic web page is one that is built on-the-fly in response to user requests. In this article, we'll explore the differences between these two types of web pages in more detail, including their features, advantages, and disadvantages. Static Web Pages A static web page is a pre-built HTML file that is sent to the user's browser when they request a particular URL. These pages are built using HTML, CSS, and other web technologies, and they typically contain fixed content that does not change over time. Static pages are simple, fast, and easy to create, making them a popular choice for small websites and blogs that do not require a lot of interactivity. Features of Static Web Pages Static web pages have several...