Useful Linux cron examples

Linux cron schedules recurring tasks at defined times using flexible expressions for minutes, hours, days, and months

Here are useful cron job examples 😎👇 #software #softwaredeveloper #TechTips #technicalinterview

Find a high-res pdf book with all my #linux related infographics from https://study-notes.org/linux-ebook.html

2025/8/30 Edited to

... Read moreHey everyone! If you're like me, you probably want to automate those repetitive tasks on your Linux machine. Learning about cron jobs was a game-changer for my workflow. It felt a bit intimidating at first, but once I got the hang of it, I realized how powerful and simple it is! I'm excited to share a comprehensive list of common crontab examples that I've found incredibly useful for various scheduling needs. So, what exactly is cron? It's a time-based job scheduler in Unix-like operating systems. Crontab (short for 'cron table') is the file where you schedule these commands. Think of it as your personal assistant who runs tasks exactly when you tell them to, without you lifting a finger! This crontab list will walk you through the expressions and commands to get started. The basic crontab syntax might look like a secret code at first, but it's super logical once you break it down. Each line in your crontab file has five time fields, followed by the command you want to run: minute (0-59) hour (0-23) day_of_month (1-31) month (1-12) day_of_week (0-7, 0 or 7 is Sunday) command_to_execute To make scheduling even more flexible, cron uses a few special characters: *: Any value (e.g., * in the minute field means 'every minute'). ,: List (e.g., 1,15,30 in the minute field means 'at minutes 1, 15, and 30'). -: Range (e.g., 9-17 in the hour field means 'from 9 AM to 5 PM'). /: Step (e.g., */5 in the minute field means 'every 5 minutes'). Now, let's dive into some practical cron expressions with corresponding commands and descriptions for common tasks: Run a task every minute: * * * * * /path/to/your_script.sh *My personal use*: This is great for quick checks, like monitoring a log file or a service's uptime every minute. Run a task every 5 minutes: */5 * * * * /path/to/another_script.sh Run a task hourly: 0 * * * * /path/to/hourly_backup.sh You can also use the special string @hourly. *I often use @hourly for tasks like rotating logs or making small incremental backups.* Run a task daily at a specific time (e.g., 3:00 AM): 0 3 * * * /path/to/daily_report.sh Alternatively, use @daily. *This is perfect for those daily reports or database cleanups you don't want to do manually.* Run a task weekly (e.g., every Monday at 1:00 AM): 0 1 * * 1 /path/to/weekly_maintenance.sh Or use @weekly. *My weekly system updates and security scans usually run with this setting.* Run a task monthly (e.g., on the 1st of every month at midnight): 0 0 1 * * /path/to/monthly_cleanup.sh Or use @monthly. *I schedule my monthly data archives or billing reports with this one.* Run a task yearly (e.g., on January 1st at midnight): 0 0 1 1 * /path/to/yearly_archive.sh Or use @yearly (or @annually). *This is handy for annual data consolidation or fiscal year-end reports.* Run a task at system startup: @reboot /path/to/start_service.sh *This is a lifesaver for making sure certain services or scripts start automatically after a server reboot, ensuring everything is up and running without manual intervention.* A pro-tip I learned the hard way: Always handle your script's output! Otherwise, cron might email you for every single output, or your logs will be messy. You can redirect output to a log file or null: * * * * * /path/to/script.sh >> /var/log/my_cron.log 2>&1 (Appends output to a log file) * * * * * /path/to/script.sh > /dev/null 2>&1 (Discards all output) To get started, just type crontab -e in your terminal. This opens your personal crontab file for editing. And crontab -l will list your current cron jobs. Remember to save and exit the editor, and your new cron job will be active immediately! Hopefully, this crontab list of examples gives you a solid starting point for automating your Linux tasks. It’s incredibly satisfying to set something up once and know it’ll just run in the background. Happy scheduling!

Related posts

✨📓Supplies You SHOULD Have!! (NOT JUST PENCILS)🏫✨
✨ Let’s talk essentials, not trends. These are the timeless, always-reliable school supplies every student should keep in their bag, on their desk, or stashed in their dorm drawer aside from the oldie but Goldie pencils and sticky notes (equally as important, but we already know that!). Because run
Margarita

Margarita

7176 likes

A student's desk with a laptop displaying a probability assignment, a spiral notebook with handwritten notes, and two energy drink cans. The image is titled 'HOW I TAKE NOTES IN COLLEGE'.
A blank page of a spiral notebook with 'Section # here' written in red at the top, illustrating the first step of note-taking.
A spiral notebook page showing 'Section # here' and the second step of note-taking, which involves writing and highlighting terms and their definitions.
How 4.0 Students Take Notes 📝❤️
Steal my notes! 🫧💋🪩 This is the technique I use to take my notes in classes. I just perfected my format and find this to be the most functional. I take these notes in class and it isn’t time consuming or hard! I find this method to work best for me because the terms and examples stick out th
lizzie matthias

lizzie matthias

3094 likes

Biology notes to help you revise 🧬
These are some digital notes I have taken over the semester!! I hope this help you study for and hopefully pass your exams. Biology is so so so so hard 🥲. #studytips #lemon8challenge #revision #biology #biologystudents #grades #exams #biologynotes #notes
Lyssi 🪩🎀

Lyssi 🪩🎀

254 likes

Useful Websites You Might Find Helpful Someday
Little lesser-known websites that could prove helpful for various needs in your everyday online activities. I hope you find these valuable. ⟣ Remove Vocals With this tool, you can make karaoke tracks easily. It removes vocals from any song (in wav or mp3 format) that has both instruments and
Reverelia

Reverelia

1298 likes

A laptop screen displays the 'News in Slow Spanish for Beginners' podcast interface, showing 'Lesson 2 - Ser & Estar' and an 'About' section detailing the course structure with dialogues, stories, and quizzes.
A laptop screen shows a list of 'Spanish for Beginners' podcast episodes, including lessons on syntax, past participles, and irregular verbs, with the overlaid text 'perfect pace for those just starting to learn!'.
A laptop screen displays the 'Spanish for Beginners: Lesson 2 - Ser & Estar' podcast episode description, explaining how to decipher the verbs of being, with the overlaid text 'scenarios in Spanish and English'.
Perfect Spanish podcast for beginners
I love this podcast so much!! It’s great for you if you are looking to learn Spanish in a natural, easy way. Each episode covers useful words, phrases, and grammar with clear explanations and real-life examples (both English and Spanish). It’s great for beginners because you get to hear Spanish in
Anaïs D’Ottavio

Anaïs D’Ottavio

1356 likes

Useful notes for Nurse 🩺🫀🫶🏻
#nurse #medicalstudent #school #notes #nursing
Sandra Vasquez

Sandra Vasquez

126 likes

A woman with blonde hair, wearing a light purple ruffled dress, holds a microphone. Overlay text reads "Use AI to learn anything faster." The Lemon8 logo and username are at the bottom left.
Text describes the first AI learning strategy: "Explain Like I'm 5," with a baby emoji. It includes a description and a prompt template for simplifying complex concepts.
Text describes the second AI learning strategy: "Examples and Analogies," with a globe emoji. It includes a description and a prompt template for getting real-world examples.
Use AI to learn anything faster
🚀 How to Use AI to Learn Anything Faster 🚀 Are you struggling to learn new concepts quickly? Here are 10 innovative ways to use AI to supercharge your learning process! 🧠✨ ---- 1. Explain Like I’m 5 👶 Description: Break down tough ideas so even a kid could get it. Perfect for when you’re totall
Valder

Valder

297 likes

A bookstore shelf filled with various language learning books, with a white text overlay that reads "KOREAN learning BOOKS."
A book titled "KOREAN FOR K-POP AND K-DRAMA FANS" featuring illustrations of hearts, a phone, and a hand, with "FREE ONLINE AUDIO" indicated.
A "KOREAN PICTURE DICTIONARY" book displaying illustrations of Korean words like "tablet," "bibimbap," "taekwondo," and a "tourist attraction."
Korean Learning Books
#koreanbooks #bookcommunity #barnesandnoblehaul #koreanlanguage #koreanlanguagelearning
Sunflowerlemon

Sunflowerlemon

854 likes

Tips for Scoring High on Essays 📚✍️
I’d like to share some insights that helped me achieve great scores on every paper from my freshman year to graduate school. These tips are based on my writing techniques and daily observations: I hope these tips help you elevate your essay writing skills! Stay tuned for more insights on structu
KnoweeAI

KnoweeAI

105 likes

A hand holds a pencil, writing in a notebook, with a laptop in the background. The image is titled "simple but useful writing tips" and indicates to "SWIPE FOR MORE," serving as the cover for an article on writing proficiency.
This slide provides writing tips: avoid 'This/These/It' by being specific, and avoid 'due' by using more descriptive language. Examples show how to rephrase sentences like 'Your rent is due' to 'The rent payment is required by the end of the month.'
This slide offers writing advice: avoid 'based on' and instead use 'on the basis of' for clarity and formality, with an example provided. It also states that sentences should begin and end with words, not symbols, numerals, abbreviations, or acronyms.
Simple but useful tips to write better ✍🏻
📝 Learning to write proficiently is important for effective communication and academic success. Proficient writing enables individuals to convey their thoughts, ideas, and arguments clearly and persuasively. It is a valuable skill in various professional fields, where concise and articulate wri
teal.days

teal.days

129 likes

A list titled '50 passive income ideas you can start with little to no money' is displayed over a blurred background of what appears to be currency. The list details various methods like affiliate marketing, YouTube channels, e-books, blogging, stock photography, online courses, and print on demand.
50 Passive Income Ideas to Start With No Cash 🔑ℹ️⬇️
Everyone wants a way to make money without working constantly. That’s where passive income comes in. You can earn money while you sleep, while you travel, and while you relax by the beach. In this post, we’re diving into 50 passive income ideas you can start today, even if you have little to no mon
RoadToRiches

RoadToRiches

141 likes

5 WAYS GOD SPEAKS💕✝️…
Hey everyone! I thought i’d share with you ways God speaks to me. I used to struggle with understanding the way He speaks and only thought He spoke through an audible voice. Come to find out God being the amazing wonderus Creator He is, He speaks in MANY ways. This is to encourage somebody! If
Hannah Rose

Hannah Rose

2052 likes

These sites saved my brain in 2025 🧠💻
1. ChatHub I used to bounce between AI platforms, copy-pasting the same prompt over and over to compare answers. With ChatHub, I can talk to multiple AIs at the same time, in one clean interface. It’s honestly my go-to whenever I’m brainstorming content, writing study scripts, or just curious whi
emilie.studygram

emilie.studygram

552 likes

An infographic titled 'Linux curl Command Examples' provides a comprehensive list of curl commands. It covers HTTP GET operations with options like user-agent and custom headers, HTTP POST/PUT operations for data and file uploads, and various file download operations including resuming and rate-limiting. Created by Dan Nanni.
Linux curl command examples
The curl command is a flexible tool that lets you send or receive data from servers using protocols like HTTP, HTTPS, FTP, and others, all from the command line Here are useful curl command examples 😎👆 #devops #opensource #software #TechTips Find high-res pdf books with all my #lin
Dan Nanni

Dan Nanni

7 likes

HOW I GOT ALL A’S
achieving a 4.0 gpa isn't just about being smart—it’s about using the right strategies! here’s how i did it: 1. learn on-the-go: watch youtube videos and listen to podcasts about your subjects while walking. 2. write, don’t type: handwriting notes helps improve memory retention. 3. start e
Mariah

Mariah

650 likes

A comprehensive guide titled 'HOW TO USE AI TO LEARN 10X FASTER,' detailing AI use cases, ChatGPT prompts, specialized GPTs, AI tools, and Chrome extensions for enhanced learning efficiency.
A list of practical AI use cases for learning, including transcribing YouTube videos, creating podcasts from notes, summarizing study materials, and learning from podcasts, X threads, and LinkedIn carousels.
A section titled 'ChatGPT Prompts' offering specific prompts for learning, such as explaining topics to beginners, creating learning plans, comparing concepts, and summarizing key points of materials.
🚀 How to Use AI to Learn 10x Faster
Hey everyone! Today I want to share with you an amazing resource on how to use AI to supercharge your learning. Whether you're a student, a professional, or just someone looking to expand your knowledge, these tips and tools can help you learn faster and more effectively. Let's dive in! 🌟
Valder

Valder

1887 likes

6 Free Online Certifications to Boost Your Resume
Hi, lemons! In a rapidly evolving job market, standing out can be a daunting task. Thankfully, online platforms have leveled the playing field, offering a wealth of world-class certifications—for free! Did your eyes just light up? They should have! Today, I'm happy to reveal six free online cer
Lifestyle Babe

Lifestyle Babe

390 likes

A smartphone displaying a timer and a keyboard on a yellow surface, featuring the title "How to use AI to learn anything 2x FASTER *useful tips for students*".
A graphic titled "How to use AI to learn anything 2x Faster" presenting methods like "explain like i'm 5" with a cartoon boy and "mindmaps" with colorful clouds, including prompt templates.
A graphic titled "How to use AI to learn anything 2x Faster" detailing methods such as "quiz / practice tests" with papers and "mental associations" with a lightbulb, including prompt templates.
Learn anything 2x Faster with AI!
Working alongside AI tools can help streamline how we learn new skills and absorb information, turning complex topics into manageable steps while adapting to our individual pace and style. I love using AI as an assistant, but I admit it still cannot replace actual thinking. It speeds things up
teal.days

teal.days

569 likes

A wooden table with a small potted succulent plant, featuring the text 'SPANISH word of the DAY' and the Lemon8 logo with username.
A gradient background displaying the Spanish word 'Allí', its pronunciation '[ah-yi]', English translation 'there', and an example sentence 'la tienda está allí' (the store is there).
A gradient background presenting two example sentences for 'allí': 'dejé mi bolso allí' (I left my bag there) and 'allí vivía mi abuela' (my grandmother used to live there).
Add to your Spanish vocab!
Knowing allí is super useful when learning Spanish because it helps you describe where things are especially if you are pointing out something a little farther away. It’s like saying "there" in English but with a bit more precision. Compared to aquí (here) and allá (over there, farther away
Anaïs D’Ottavio

Anaïs D’Ottavio

624 likes

Useful sysdig command examples
Sysdig is one of those hidden gem tools that shows exactly what your Linux system is doing in real time — system calls, containers, network traffic, file access — everything, no guessing. Here are useful sysdig command examples 😎👆 Find high-res pdf ebooks with all my cybersecurity related inf
Dan Nanni

Dan Nanni

5 likes

An infographic titled 'Sysdig Command Examples' defines Sysdig as a Linux tracing tool and lists various commands for monitoring CPU, memory, network, file I/O, and capturing events. It's created by Dan Nanni.
Useful sysdig command examples
The sysdig command is a powerful system-level exploration and troubleshooting tool for Linux. Sysdig can capture and analyze real-time system calls and events, enabling deep visibility into processes, containers, network activity, and file access Here are useful sysdig command examples 😎👆 #te
Dan Nanni

Dan Nanni

27 likes

Best FREE Classes From Google
1. Foundations of User Experience (UX) Design. In this course you are going to learn about: * Identify common job responsibilities of entry-level UX designers and other teams you might work with. * Understand foundational concepts in UX design, such as user-centered design, the design process, ac
Ivy League Help

Ivy League Help

248 likes

Useful awk command examples
Awk is a powerhouse text tool — it can scan files or streams, match patterns, and run custom actions on the fly, making it perfect for quick data filtering, parsing, and one-line automation Here are useful awk command examples 😎👇 Find high-res pdf books with all my Linux infographics at https
Dan Nanni

Dan Nanni

4 likes

A laptop screen displays the Itch.io website, showing a list of horror games. The overlay text reads 'WHERE TO PLAY FREE HORROR GAMES'.
A laptop screen displays the Itch.io website, featuring a selection of horror games. The overlay text reads 'ITCH.IO'.
A laptop screen displays the Crazy Games website, showcasing various horror games. The overlay text reads 'CRAZY GAMES'.
WHERE TO PLAY FREE HORROR GAMES
Ever wondered where to play horror games for FREE. As a beginner YouTuber I didn’t want to pay (didn’t really have the funds to) for games. Lucky they’re a wild selection of platform that offer free horror games with a lot of them being made by small developers. What better way to support small dev
Endia 🪴

Endia 🪴

835 likes

Linux netcat command examples
The netcat command lets you read from and write to network connections using TCP or UDP. Its flexibility makes it a must-have for infosec professionals, who use it for tasks such as port scanning, banner grabbing, and setting up reverse shells during penetration tests. Here are useful netstat co
Dan Nanni

Dan Nanni

9 likes

These 5 websites feel illegal to know!
#gettoknowme
Useful AI Websites & Tutorials

Useful AI Websites & Tutorials

31 likes

How to Practice Self-Love 💗
☕️ Start Your Day with Positivity 〜 Morning Affirmations: Begin each day by speaking or writing positive affirmations. Examples include: "I am worthy of love and respect." "I am capable of achieving my goals." "I embrace who I am and am grateful for my uniqueness."
mindofieva

mindofieva

100 likes

A person with long dark hair and a straw hat walks through a sunny public square. Overlay text reads "CYBERSECURITY CAREER Tips to get started," introducing advice for a career in cybersecurity.
A person in a white dress walks on a path next to green bushes. Overlay text advises to "Build a Strong Technical Foundation" by learning networking basics, operating systems, and scripting languages.
People walk across a street with benches and trees in the background. Overlay text suggests to "Get Hands-On Experience" through CTF competitions, cybersecurity challenges, and setting up a home lab.
Tips for pursuing a career in cybersecurity
1. Build a Strong Technical Foundation A solid understanding of systems, networks, and programming is essential for identifying and mitigating security threats. • Learn networking basics (e.g., TCP/IP, firewalls, VPNs). • Gain familiarity with operating systems (Windows, Linux)
vedha | career tips (tech) 👩‍

vedha | career tips (tech) 👩‍

130 likes

The image displays the title "Quick Notes For Psych Students" in blue and yellow text, overlaid on a background of psychology textbooks and colorful stationery.
This image defines psychology as the scientific study of the mind and behavior, listing thoughts, emotions, motivations, and social interactions as aspects it examines, set against a subtle brain graphic.
The image defines behavior modification as a psychological technique to change human behavior, featuring a T-chart comparing rewards (positive reinforcement) and consequences (punishment) with examples.
✨STEAL MY BEHAVIOR MOD/CONDITIONING NOTES 🧠✨
🎓✨ Calling all psychology students! 🧠 Struggling to keep up with all the techniques and terms? Here are a few notes on behavior modification + fun and effective study hacks to help you ace your exams! From cheat sheets to quick memorization tips, I’ve got you covered. 💡 Swipe through for: • E
Margarita

Margarita

139 likes

YOUTUBE CHANNELS TO LEARN FRENCH (part 3) ✨
Hey everyone! I’ve got some new YouTube channels to help you learn French. I know French isn’t the easiest language, and the pronunciation can be tricky, but don’t worry—these channels make learning fun and engaging. With the right content, you’ll improve your listening skills and pick up natural e
Kaylin Do

Kaylin Do

38 likes

HOW I STARTED MODELING
Modeling well honestly, any work of passion is an investment of time and money! This is just a small start to my journey and how I made into a full time thing kinda…I wanted to be aware that I never used agency I tried…but it was just not useful and a waste of lots of money! There are good ones tho
⋆.˚✮𝔍𝖆𝖟𝖟𝖞✮˚.⋆

⋆.˚✮𝔍𝖆𝖟𝖟𝖞✮˚.⋆

719 likes

A warm and inviting kitchen scene featuring a wooden table with fresh bread, eggs, and flowers. Overlaid text reads "THE OVERWHELMED HOMEMAKER'S 5-DAY RESET" and "Tips for a COZY HOME," reflecting the article's focus on creating a manageable and pleasant living space.
The Overwhelmed Homemaker’s 5-Day Reset
Day 1: The Kitchen If your home feels overwhelming right now, start here. Not the whole house. Not every closet and drawer. Just one room. Over the next five days, we’re going to reset the home one space at a time. By the end of the week your house will feel lighter, calmer, and far more m
At Home with Woodview Cottage

At Home with Woodview Cottage

78 likes

An infographic titled 'Useful TUI Linux Software' with a Tux penguin logo. It defines TUI as Text-based User Interface for terminal environments and lists various software categorized under Disk Manager, System Monitor, Web Browser, Network Manager/Monitor, Multimedia, GPT, Git, Coding, File Manager, and Messaging.
Useful TUI software on Linux
Linux TUI (Text User Interface) software offers a user-friendly way to interact with applications directly from the terminal, using text-based menus and interfaces instead of a graphical desktop environment Here are a categorized list of useful TUI software available on Linux 😎👆 #software #o
Dan Nanni

Dan Nanni

4 likes

An infographic titled 'Linux netcat Command Examples' lists various `nc` commands for network tasks like port scanning, file transfer, creating shells, and streaming. It includes commands for TCP/UDP, IPv6, and persistent listeners, credited to Dan Nanni.
Useful netcat command examples
Netcat is the Swiss army knife of networking. It lets you read and write data over TCP or UDP, and infosec folks use it all the time for things like quick port scans, grabbing service banners, or setting up reverse shells. Here are useful netstat command examples 😎👆 Find high-res pdf ebooks w
Dan Nanni

Dan Nanni

3 likes

A Linux watch command cheatsheet created by Dan Nanni, listing various commands to monitor system metrics in real-time. Examples include tracking CPU/memory usage, disk space, log file growth, network activity, and system errors, with refresh intervals specified.
Linux watch command cheatsheet
Ever wish you could just run a command and keep seeing it update automatically as things change? That is exactly what the watch command does on Linux Here are useful examples of the watch command 😎👆 Find high-res pdf ebooks with all my Linux related infographics at https://study-notes.org
Dan Nanni

Dan Nanni

4 likes

Free Computer Science Courses from Dartmouth
If you are interested in Computer Science, these FREE courses from Dartmouth make learning easy and accessible for everyone 1. Linux Basics: The Command Line Interface. In this course you are going to learn about: * Situate on a timeline the key dates of Unix and Linux creation * Use basic comm
Ivy League Help

Ivy League Help

42 likes

A collage featuring the orange cover of 'Merriam-Webster's Easy Learning Complete Spanish' and open pages from its grammar, verb, and vocabulary sections. A colorful overlay reads 'My New Obsession'.
The orange cover of 'Merriam-Webster's Easy Learning Complete Spanish' book, highlighting '3 books in 1: Grammar + Verbs + Vocabulary' and 'New Edition!'. Spanish phrases are also visible.
An open page from the grammar section of 'Merriam-Webster's Easy Learning Complete Spanish', detailing Spanish pronouns and relative pronouns with examples and tables for singular/plural and masculine/feminine forms.
My New Language Learning Obsession
I recently got Merriam-Webster’s Easy Learning Complete Spanish and am completely obsessed!!! It’s divided into three sections each focusing on Grammar, Verbs, and Vocabulary. My favorite section is the verb section because it comes with all of the different tenses and sentence examples. I
Selena🪐 |月彤

Selena🪐 |月彤

641 likes

A scenic view of a city along a river with buildings, bridges, and mountains under a clear blue sky. The foreground features a bridge railing covered in numerous love locks. The image introduces the topic with the text 'FRENCH word of the DAY'.
A light brown graphic displaying the French phrase 'pas mal' with its phonetic pronunciation '[pah-mahl]' and English translation 'not bad'. An example sentence in French and English illustrates its usage: 'the concert was not bad, but I preferred the last one'.
A light brown graphic titled 'EXAMPLES' showing a dialogue in French and English. It demonstrates the use of 'Pas mal' in a conversation about a movie: 'A: How was the movie? B: Not bad, but a bit long'.
useful french phrase to know!
"Pas mal" is a casual way to say something is "not bad" without sounding too excited or too negative. It’s great for giving neutral opinions like about food, movies, or experiences, etc. It can also mean "quite a lot" in some cases, like "Il y avait pas mal de monde"
Anaïs D’Ottavio

Anaïs D’Ottavio

43 likes

An infographic titled 'TOP YOUTUBE CHANNELS TO LEARN' presents a list of tech subjects such as Java, Python, SQL, MS Excel, and their corresponding YouTube channels like Neso Academy, Corey Schafer, Joey Blue, and ExcellsFun, along with other topics and channels.
💻
#tech #study #Lemon8Diary #learning
ReNisha

ReNisha

474 likes

A study desk setup featuring a monitor displaying a website, a keyboard, mouse, and an ergonomic office chair. Text overlay states, "Three websites I use as a straight A+ student."
A tablet screen displaying the Wolfram Alpha website, showing its homepage with various categories for calculations, knowledge, and subjects like Mathematics, Physics, and Engineering.
A tablet screen displaying the Project Gutenberg website, featuring its welcome message, a library of over 75,000 free eBooks, and examples of classic book covers.
💻 3 FREE Websites That Help Me Stay an A+ Student
Let’s be real, getting good grades isn’t just about working harder, it’s about working smarter 💅📚 Here are 3 websites I use all the time as a straight A+ student: 🧠 Wolfram Alpha – for when math gets a little too mathy lol 📚 Project Gutenberg – free access to thousands of classic books (SO G
CompSkyy

CompSkyy

38 likes

ChatGPT Prompts That Actually Work in 2026
ChatGPT Tips That Save Time and Get Better Results Most people use ChatGPT wrong They ask random stuff Get random answers Then say it doesn’t work But it’s not the tool It’s how you talk to it This post breaks down 16 simple laws That help you get better results Save time And actual
fig3lvls

fig3lvls

1332 likes

Teacher Tips: 6 Strategies for Autistic Students
As a teacher and mother to an autistic adult son, I can offer some insights. First, let me validate that it can be really challenging to work with folks on the spectrum. Understanding that they can't help the way their brains are wired helps. It is also useful to reframe and see their way as j
Tania Solomon

Tania Solomon

49 likes

Study Sessions & Time Spent
Start building good habits now, before it’s too late! ⏰ 💕✨🌸 #studyinghabits #get good grades #studytok
💕its ija 429✨

💕its ija 429✨

79 likes

An infographic titled 'Ways to Remove Files on Linux' presents a comprehensive list of commands for deleting files and directories. It includes various `rm` commands for basic removal, `find` commands for conditional deletion based on criteria like age, size, user, or permissions, and other utilities like `unlink`, `shred`, and `trash-put`. The infographic is created by Dan Nanni from study-notes.org.
Different ways to remove files on Linux
There are various ways to remove files and directories on Linux, based on filenames, creation/access time, size, ownership, permissions, or security needs Here are useful command line examples of removing files on Linux 😎👆 #infosec #TechTips #software Find high-res pdf books with a
Dan Nanni

Dan Nanni

10 likes

✨Fixed vs Growth Mindset ✨
✨️What is a fixed mindset?✨️ An individual with a fixed mindset believes that their qualities and skills are fixed and therefore cannot change. These individuals rest on their laurels rather than attempt to develop their skills. They are convinced that it is talent that gets you places, and not ha
AISHAI'S INTUIT | Sharifa

AISHAI'S INTUIT | Sharifa

732 likes

An infographic titled 'Linux Security Hardening' by Dan Nanni, listing essential commands for system upgrades, user and SSH security, firewall setup, file permission checks, service management, port monitoring, USB device control, legacy service checks, and security auditing tools.
Linux system hardening commands
Securing a system against threats requires reducing vulnerabilities, tightening access, and disabling unnecessary services. Here are useful Linux commands for that 😎👆 #linux #softwaredeveloper #TechTips #upskill Find high-res pdf books with all my #cybersecurity related infographics
Dan Nanni

Dan Nanni

10 likes

This image displays a comprehensive list of Tcpdump command examples for network traffic analysis on Linux. It covers various functionalities like capturing, filtering by interface, protocol, IP, port, and subnet, saving to files, displaying detailed packet information, and advanced filtering using TCP flags and VLANs.
Tcpdump command examples
Tcpdump is a powerful command-line tool for capturing and analyzing network traffic on Linux. This tool is essential for cybersecurity pros and sysadmins to troubleshoot issues, inspect protocols, and detect suspicious activity Here are useful tcpdump command examples 😎👆 #technology #softwar
Dan Nanni

Dan Nanni

7 likes

A Linux I/O Redirection cheat sheet created by Dan Nanni, detailing various shell commands for redirecting, appending, and combining standard input, output, and error streams. It includes examples like `cmd < file`, `cmd > file`, `cmd 2> file`, `cmd > file 2>&1`, and `cmd <<< "string"` with their corresponding descriptions.
Linux I/O redirection cheat sheet
Here is a concise reference of Linux shell operators for redirecting, appending, and combining standard input, output, and error streams 😎👇 Find high-res pdf ebooks with all my Linux related infographics at https://study-notes.org #linux #sysadmin #infosec #devops #softwareengine
Dan Nanni

Dan Nanni

6 likes

A desk setup with a monitor displaying a project plan, a laptop, keyboard, and a plant, illustrating the topic of 'Excel alternatives best in 2025'.
A screenshot of Zoho Sheet displaying a spreadsheet with country population data, highlighting it as a free Excel alternative with advanced features for seamless collaboration.
A screenshot of Smartsheet's campaign planning interface, demonstrating its project management features, templates, and views for tracking progress and collaboration.
Excel alternatives best in 2025
Looking for a fresh spin on spreadsheets? These tools bring fresh alternatives to Excel and Google Sheets, offering powerful features, real-time collaboration, and user-friendly designs. Whether you’re a data enthusiast, team player, or productivity seeker, there’s something here for everyone. S
Reverelia

Reverelia

48 likes

See more