Search results for #90DaysOfPython
Day 3 (treasure Ireland) A simple game, we're u will be casing a treasure if found then u won, else you loss #90DaysOfPython #pythonlearning
Day 2 (tip calculator) Just a simple calculator that will generate a bill for a user #90DaysOfPython #codingcommunity
New Era Unlocked I just kicked off my 90 Days of Python Challenge 🐍💻 For the next 90 days, I’ll be building + posting a project EVERY. SINGLE. DAY. Stay tuned 👀 … it’s about to get techy & creative ✨ #90DaysOfPython #GrindMode #CodeAndChill
Day 26-27 of #90DaysOfPython:HTTP Header Analysis HTTP headers can reveal crucial security configurations or misconfigurations that impact a website’s resilience against attacks. What I built: I wrote a Python script that fetches HTTP headers from a target URL.
Day 26-27 of #90DaysOfPython:HTTP Header Analysis HTTP headers can reveal crucial security configurations or misconfigurations that impact a website’s resilience against attacks. What I built: I wrote a Python script that fetches HTTP headers from a target URL. https://t.co/3s7onBi99I
Day 22-23 of #90DaysOfPython: Building a Simple Port Scanner. Key Learnings: -How to scan open ports on a target machine. -The role of ports in network communication. -How port scanning helps identify potential entry points during penetration testing.
Day 22-23 of #90DaysOfPython: Building a Simple Port Scanner. Key Learnings: -How to scan open ports on a target machine. -The role of ports in network communication. -How port scanning helps identify potential entry points during penetration testing. https://t.co/4MSsJpnA0k
Day 21 of #90DaysOfPython: 21: Automating Tasks with Python What I Learned: -How to use the os and shutil modules to interact with the file system. -Writing a script to automatically organize files in a folder by their extensions (e.g., moving .txt files to a "TextFiles" folder).
Day 21 of #90DaysOfPython: 21: Automating Tasks with Python What I Learned: -How to use the os and shutil modules to interact with the file system. -Writing a script to automatically organize files in a folder by their extensions (e.g., moving .txt files to a "TextFiles" folder). https://t.co/hJmxwlqfcD
Day 19-20 of #90DaysOfPython: Introduction to Encryption Key Takeaways: -Encryption is the backbone of cybersecurity. -Symmetric encryption is fast and efficient, while asymmetric encryption provides enhanced security for key exchange.
Day 19-20 of #90DaysOfPython: Introduction to Encryption Key Takeaways: -Encryption is the backbone of cybersecurity. -Symmetric encryption is fast and efficient, while asymmetric encryption provides enhanced security for key exchange. https://t.co/J8IhE5Y2wd
Day 18 of #90DaysOfPython: Introduction to Cryptography - Hashing is a one-way process to convert data into a fixed-size string. -Used for password storage, data integrity, and more. Hashing Algorithms: MD5 (insecure), SHA1 (weak), SHA256 (secure).
Day 18 of #90DaysOfPython: Introduction to Cryptography - Hashing is a one-way process to convert data into a fixed-size string. -Used for password storage, data integrity, and more. Hashing Algorithms: MD5 (insecure), SHA1 (weak), SHA256 (secure). https://t.co/C1zQA21UZH
Day 16 of #90DaysOfPython: Web Scraping with BeautifulSoup. I explored web scraping using BeautifulSoup and requests in Python -Learned how to fetch and parse HTML. -Extracted specific data like news headlines from a website. -Built a simple scraper to automate data collection
Day 16 of #90DaysOfPython: Web Scraping with BeautifulSoup. I explored web scraping using BeautifulSoup and requests in Python -Learned how to fetch and parse HTML. -Extracted specific data like news headlines from a website. -Built a simple scraper to automate data collection https://t.co/JUbFo1EfQx
Day 15 of #90DaysOfPython : Introduction to Networking I explored the fundamentals of networking and socket programming -Sockets = Network communication endpoints -IP & Ports = How devices connect -Client ↔ Server = Data exchange over TCP Built a simple TCP client-server app
Day 15 of #90DaysOfPython : Introduction to Networking I explored the fundamentals of networking and socket programming -Sockets = Network communication endpoints -IP & Ports = How devices connect -Client ↔ Server = Data exchange over TCP Built a simple TCP client-server app https://t.co/n46g9sryiI
One of the reasons my posting has been inconsistent ,cybersecurity no dey pity. recently wrapped up a project, doing Google IT Automation with python & #90DaysOfPython,got into Hacktify +2 other interns (had to reject 1),Even my data dey protest. Burnout is real, but we move🥲
Day 14 of #90DaysOfPython: Working with APIs I learned how to use the requests library to fetch data from the GitHub API. Key takeaways: - Handle JSON responses with .json(), and - Authentication often involves API keys in headers.
Day 14 of #90DaysOfPython: Working with APIs I learned how to use the requests library to fetch data from the GitHub API. Key takeaways: - Handle JSON responses with .json(), and - Authentication often involves API keys in headers. https://t.co/R2l5vBYFiu
Day 13 of #90DaysOfPython:Using External Libraries: Requests Today, I explored external libraries in Python. I learned how to make HTTP requests (GET & POST) and interact with APIs. I built a simple script that fetches real-time weather data from a public API and displays it.
Day 13 of #90DaysOfPython:Using External Libraries: Requests Today, I explored external libraries in Python. I learned how to make HTTP requests (GET & POST) and interact with APIs. I built a simple script that fetches real-time weather data from a public API and displays it. https://t.co/pCY76wK1lS
Day 12 of #90DaysOfPython : Working with JSON I learned how to parse and create JSON data using Python’s json library. I also explored the JSON format and its role in APIs. -Project: I created a script that reads a JSON file and retrieves specific values based on user input.
Day 12 of #90DaysOfPython : Working with JSON I learned how to parse and create JSON data using Python’s json library. I also explored the JSON format and its role in APIs. -Project: I created a script that reads a JSON file and retrieves specific values based on user input. https://t.co/0XCYTQWUhy
Day 11 of #90DaysOfPython: Regular Expressions Today, I explored Regular Expressions in Python using the re library. -takeaways: \d: Matches digits \w: Matches alphanumeric characters Regex is essential for string manipulation and data validation.
Day 11 of #90DaysOfPython: Regular Expressions Today, I explored Regular Expressions in Python using the re library. -takeaways: \d: Matches digits \w: Matches alphanumeric characters Regex is essential for string manipulation and data validation. https://t.co/iU4WVVSwXO
Day 10 of #90DaysOfPython: Introduction to Libraries Today, I explored Python libraries and installed them using pip. Libraries are essential for extending Python's functionality. Key Highlights: I learned about built-in libraries like os, sys, and math.
Day 10 of #90DaysOfPython: Introduction to Libraries Today, I explored Python libraries and installed them using pip. Libraries are essential for extending Python's functionality. Key Highlights: I learned about built-in libraries like os, sys, and math. https://t.co/OnjpHjavy5
Day 9 of #90DaysOfPython: Error handling Error handling in Python, is crucial for creating robust programs. -Key Concepts: I learned how to use try, except, and finally blocks to manage errors . This helps keep programs running smoothly even when unexpected issues arise.
Day 9 of #90DaysOfPython: Error handling Error handling in Python, is crucial for creating robust programs. -Key Concepts: I learned how to use try, except, and finally blocks to manage errors . This helps keep programs running smoothly even when unexpected issues arise. https://t.co/TyHhq0wHe9
Day 8 of #90DaysOfPython:File I/O Understanding file handling is essential for working with data effectively -Key Functions: I learned to use open(), read(), and write() to manage files. This allows me to read from text files and write data back to them.
Day 8 of #90DaysOfPython:File I/O Understanding file handling is essential for working with data effectively -Key Functions: I learned to use open(), read(), and write() to manage files. This allows me to read from text files and write data back to them. https://t.co/ADrhWNOgWj
Day 7 of #90DaysOfPython :dictionaries and sets They are essential for organizing data in Python. -Dictionaries: These are collections of key-value pairs. -Sets: These are unordered collections of unique items, used for storing items without duplicates.
Day 7 of #90DaysOfPython :dictionaries and sets They are essential for organizing data in Python. -Dictionaries: These are collections of key-value pairs. -Sets: These are unordered collections of unique items, used for storing items without duplicates. https://t.co/SCku9uv0uR
#90daysofPython Day 16 - So today's task was to create a web scrapper, a web scraper script automatically extracts data from websites. It sends HTTP requests to a webpage, retrieves the HTML content, and processes it to extract specific information like text, images, or links