MYSYSAD

The System Administrator's Daily Dashboard
← BACK TO DASHBOARD

📖 Help & Documentation

🔍 Quick Navigation

📰 News Feeds

What it does: Aggregates top stories from Reddit (r/sysadmin, r/netsec) and Hacker News.

How to use:

Feed Types:

💡 Tip: Stories are scored by upvotes. Higher scores = more community engagement.

🌐 CIDR Calculator

What it does: Calculates IP address ranges, subnet masks, and network information from CIDR notation.

How to use:

Example:
Input: 10.0.0.0/8
Output:
• Network: 10.0.0.0
• First IP: 10.0.0.1
• Last IP: 10.255.255.254
• Broadcast: 10.255.255.255
• Usable Hosts: 16,777,214
💡 Tip: Common CIDR blocks: /24 = 256 IPs, /16 = 65,536 IPs, /8 = 16.7M IPs

⏰ Cron Generator

What it does: Generates cron expressions for scheduling tasks on Linux/Unix systems.

How to use:

Example Expressions:
0 2 * * * = Every day at 2:00 AM
*/15 * * * * = Every 15 minutes
0 9 * * 1-5 = Weekdays at 9:00 AM
0 0 1 * * = First day of every month at midnight
💡 Tip: Use * for "any", */n for "every n", and 1-5 for ranges.

🔐 JWT Decoder

What it does: Decodes JSON Web Tokens (JWT) to view header and payload information.

How to use:

JWT Format:
eyJhbGc...header.eyJzdWI...payload.SflKxw...signature
💡 Tip: This tool only DECODES tokens (no validation or signature verification).

📝 Base64 Encoder/Decoder

What it does: Encodes text to Base64 or decodes Base64 back to plain text.

How to use:

Example:
Text: "Hello World"
Base64: SGVsbG8gV29ybGQ=
💡 Tip: Useful for encoding credentials, debugging API responses, or handling binary data in text format.

🔒 Hash Generator

What it does: Generates cryptographic hashes (MD5, SHA-1, SHA-256) from text input.

How to use:

Example Hashes for "password":
• MD5: 5f4dcc3b5aa765d61d8327deb882cf99
• SHA-256: 5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8
💡 Tip: Use for file integrity checks, password verification (compare hashes), or debugging.

🎨 Color Converter

What it does: Converts colors between HEX, RGB, and HSL formats.

How to use:

Format Examples:
• HEX: #FF5733 or FF5733
• RGB: rgb(255, 87, 51) or 255,87,51
• HSL: hsl(9, 100%, 60%)
💡 Tip: Great for web design, CSS debugging, or finding complementary colors.

📋 Regex Tester

What it does: Tests regular expressions against sample text and highlights matches.

How to use:

Common Patterns:
\d+ = One or more digits
[a-z]+ = Lowercase letters
\w+@\w+\.\w+ = Email addresses
\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b = IP addresses
💡 Tip: Test regex patterns before using them in scripts or config files.

🐍 Scripts Library

What it does: Provides 50+ ready-to-use Python scripts for common sysadmin tasks.

How to use:

Categories:

💡 Tip: All scripts are production-ready and include error handling. Review before running on production systems.

🌍 World Clock

What it does: Displays current time in multiple timezones for managing global teams.

How to use:

Features:

Example Display:
Dallas HQ 02:34 PM CST ☀️
London Team 07:34 PM GMT 🌙
Mumbai Dev 01:04 AM IST 🌙
💡 Tip: Export your config and save it. Import to restore after clearing browser cache.

📝 Scratchpad

What it does: A quick notepad for pasting logs, IP lists, commands, or temporary notes.

How to use:

Common Uses:

💡 Tip: Content persists across page refreshes but clears when you clear browser cache.

💻 Command Reference Database

What it does: Searchable database of 300+ commands across multiple platforms and tools.

How to use:

Platforms Covered:

💡 Tip: Filter is case-insensitive and searches command names, descriptions, and syntax.

💡 General Tips

Dark Mode

Click the 🌙/☀️ button in the top-right corner to toggle between light and dark themes. Your preference is saved automatically.

Browser Compatibility

MySysAd works best in modern browsers:

Privacy

MySysAd respects your privacy:

Data Persistence

Your settings (dark mode, world clock, scratchpad) are saved to browser localStorage and persist across visits. However, they will be cleared if you:

Keyboard Shortcuts

❓ Still Need Help?

If you encounter issues or have questions not covered here:

← BACK TO DASHBOARD