#other#communityexchange#cybersecurity#ethical_hacking#hacktoberfest#learn
This 90-day cybersecurity study plan helps you build strong skills step-by-step, starting from basics like networking and security principles, then moving to Linux, Python, traffic analysis, Git, ELK stack, cloud platforms, and ethical hacking. It includes daily tasks, videos, tutorials, and practice exercises designed for beginners and professionals alike, even without prior experience. By following this plan, you gain hands-on experience, prepare for certifications like CompTIA Network+ and Security+, and develop confidence in real-world cybersecurity tools and techniques. This structured approach makes learning manageable and effective, helping you start or advance your cybersecurity career.
https://github.com/farhanashrafdev/90DaysOfCyberSecurity
⚡ This week’s #cybersecurity recap is ugly in the usual way.
• Poisoned password manager CLI
• Fake Teams help desks
• Federal firewall backdoor
• Energy wiper
• Booby-trapped AI pages
• Fake Authenticator extensions
• and many more...
Read → https://thehackernews.com/2026/04/weekly-recap-fast16-malware-xchat.html
https://online.dr-chuck.com/about.php
This is the web site of the "University of Dr. Chuck". I teach a number of free/online/open courses based on free and open materials and this site is the course catalog for my free courses.
#learn#python
https://python.swaroopch.com/
A Byte of #Python
"A Byte of Python" is a free book on programming using the Python language. It serves as a tutorial or guide to the Python language for a beginner audience. If all you know about computers is how to save text files, then this is the book for you.
#learn
https://intellipaat.com/tutorial/python-tutorial/
This #Python free tutorial is for beginners as an introduction to learn this powerful programming language.
#learn
# In Python 3.4+ you can use
# contextlib.suppress() to selectively
# ignore specific exceptions:
import contextlib
with contextlib.suppress(FileNotFoundError):
os.remove('somefile.tmp')
# This is equivalent to:
try:
os.remove('somefile.tmp')
except FileNotFoundError:
pass
# contextlib.suppress docstring:
#
# "Return a context manager that suppresses any
# of the specified exceptions if they occur in the body
# of a with statement and then resumes execution with
# the first statement following the end of
# the with statement."
#python#learn
https://intellipaat.com/tutorial/python-tutorial/
Often, programmers fall for Python because of its minimum compilation time and speedier edit-test-debug cycle. Python is a go-programming language that has automated the way programmers code. This is indeed one of the major reasons developers have switched their interest to Python programming language. It helps you write simple scripts at relatively faster rate compared to Java, C, C++ .
Get #Python Certification in just 16 Hours
GET CERTIFIED
#learn
http://docs.python-guide.org/en/latest/
Greetings, Earthling! Welcome to The Hitchhiker’s Guide to Python.
This is a living, breathing guide. If you’d like to contribute, fork us on GitHub!
This handcrafted guide exists to provide both novice and expert Python developers a best practice handbook to the installation, configuration, and usage of Python on a daily basis.
This guide is opinionated in a way that is almost, but not quite, entirely unlike Python’s official documentation. You won’t find a list of every #Python web framework available here. Rather, you’ll find a nice concise list of highly recommended options.
#learn
https://blog.doordash.com/tips-for-building-high-quality-django-apps-at-scale-a5a25917b2b5
Tips for Building High-Quality #Django Apps at Scale:
Be careful about “applications”
Organize your apps inside a package
Explicitly name your database tables
Avoid GenericForeignKey
Keep migrations safe
Squash your migrations
Reduce migration friction
Avoid Fat Models
Be careful with signals
Avoid using the ORM as the main interface to your data
Don’t cache Django models
#learn