Dorking-Pentesting: Create Your Own Automated Pentesting Tools
https://medium.com/@elniak/dorking-pentesting-create-your-own-automated-pentesting-tools-11134114c2b7
https://medium.com/@elniak/dorking-pentesting-create-your-own-automated-pentesting-tools-11134114c2b7
Medium
Dorking-Pentesting: Create Your Own Automated Pentesting Tools
Explore the intricacies of an automated pentesting tool designed to detect web vulnerabilities with Google Dorks, including SQL Injection…
Using LangChain in Combination With Neo4j to Process YouTube Playlists and Perform Q&A Flow
https://medium.com/neo4j/using-langchain-in-combination-with-neo4j-to-process-youtube-playlists-and-perform-q-a-flow-5d245d51a735
https://medium.com/neo4j/using-langchain-in-combination-with-neo4j-to-process-youtube-playlists-and-perform-q-a-flow-5d245d51a735
Medium
Using LangChain in Combination With Neo4j to Process YouTube Playlists and Perform Q&A Flow
Learn faster with use of LangChain and Neo4j
How to Leverage Hugging Face’s Pre-Trained Models and Spaces for Your AI Projects
https://medium.com/@baderalotaibi3/how-to-leverage-hugging-faces-pre-trained-models-and-spaces-for-your-ai-projects-9046687cef3f
https://medium.com/@baderalotaibi3/how-to-leverage-hugging-faces-pre-trained-models-and-spaces-for-your-ai-projects-9046687cef3f
Medium
How to Leverage Hugging Face’s Pre-Trained Models and Spaces for Your AI Projects
Explore how AI revolutionizes education by turning intricate subjects into engaging quizzes.
Chatty Chatbots: Creating Conversational AI with Python
https://mysteryweevil.medium.com/chatty-chatbots-creating-conversational-ai-with-python-5a4721be230d
https://mysteryweevil.medium.com/chatty-chatbots-creating-conversational-ai-with-python-5a4721be230d
Medium
Chatty Chatbots: Creating Conversational AI with Python
Building Bots That Can Talk the Talk
Access public APIs using Python
https://medium.com/@slamsmith/access-public-apis-using-python-c794e945f19e
https://medium.com/@slamsmith/access-public-apis-using-python-c794e945f19e
Medium
Access public APIs using Python
This article provides an example to using Python to access public APIs. The example will use the requests library to make HTTP requests to an API. The example APIs will return their data in JSON…
Unveiling the Magic: Creating Sine Wave Animations with Python and Matplotlib
https://medium.com/@coolhein/unveiling-the-magic-creating-sine-wave-animations-with-python-and-matplotlib-13600b54e218
https://medium.com/@coolhein/unveiling-the-magic-creating-sine-wave-animations-with-python-and-matplotlib-13600b54e218
Medium
Unveiling the Magic: Creating Sine Wave Animations with Python and Matplotlib
A Journey into the World of Mathematical Animations
The easiest way to learn to interact with SQL databases in Python
https://medium.com/@mohamadhasan.sarvandani/the-easiest-way-to-learn-to-interact-with-sql-databases-in-python-47853ea59602
https://medium.com/@mohamadhasan.sarvandani/the-easiest-way-to-learn-to-interact-with-sql-databases-in-python-47853ea59602
Medium
The easiest way to learn to interact with SQL databases in Python
When it comes to interacting with SQL and structured databases, Python plays a significant role. First, let’s delve into the main avenues…
How to build a simple telegram bot using Python
https://davidmelash.medium.com/how-to-build-a-simple-telegram-bot-using-python-0e6ee808d03b
https://davidmelash.medium.com/how-to-build-a-simple-telegram-bot-using-python-0e6ee808d03b
Medium
How to build a simple telegram bot using Python
Introduction
Mastering Automation: Top 10 Python Libraries Shaping 2024’s Efficiency Revolution
https://usamakhaninsights.medium.com/mastering-automation-top-10-python-libraries-shaping-2024s-efficiency-revolution-1615df93e3e2
https://usamakhaninsights.medium.com/mastering-automation-top-10-python-libraries-shaping-2024s-efficiency-revolution-1615df93e3e2
Medium
Mastering Automation: Top 10 Python Libraries Shaping 2024’s Efficiency Revolution
In the fast-paced world of technology, Python continues to reign supreme as the go-to language for automation and efficiency. As we step…
Conway’s Game of Life in Python
https://medium.com/paulacy-pulse/conways-game-of-life-in-python-aae89c35f661
https://medium.com/paulacy-pulse/conways-game-of-life-in-python-aae89c35f661
Medium
Conway’s Game of Life in Python
Conway’s Game of Life is a fascinating zero-player game that involves the evolution of cells in a grid. In this tutorial, we will implement the Game of Life algorithm using Python. The algorithm…
Allocation Optimization in the Automotive Industry
https://alpersinbalc.medium.com/allocation-optimization-in-the-automotive-industry-1d65221f66c5
https://alpersinbalc.medium.com/allocation-optimization-in-the-automotive-industry-1d65221f66c5
Medium
Allocation Optimization in the Automotive Industry
In the bustling world of manufacturing and supply chains, there’s a term that often flies under the radar yet significantly impacts our…
Python Basics: Lists and Tuples
https://medium.com/paulacy-pulse/python-basics-lists-and-tuples-b96b3516b0f5
https://medium.com/paulacy-pulse/python-basics-lists-and-tuples-b96b3516b0f5
Medium
Python Basics: Lists and Tuples
In Python, lists and tuples are two important data structures used to store collections of items. Lists are mutable, meaning their elements can be changed, while tuples are immutable, meaning their…
A Short Guide to Handling Missing Data in Python
https://billypace92.medium.com/a-short-guide-to-handling-missing-data-in-python-8b82c254960b
https://billypace92.medium.com/a-short-guide-to-handling-missing-data-in-python-8b82c254960b
Medium
A Short Guide to Handling Missing Data in Python
Data analysis is difficult and sometimes impossible to perform if a dataset is missing data. Many machine learning algorithms simply cannot…
Playing and Recording Sound in Python
https://medium.com/paulacy-pulse/playing-and-recording-sound-in-python-6dfa01865def
https://medium.com/paulacy-pulse/playing-and-recording-sound-in-python-6dfa01865def
Medium
Playing and Recording Sound in Python
In this tutorial, you will learn how to play and record sound in Python using some of the most popular audio libraries. You’ll explore various methods for playing and recording sound and get familiar…
Convert Python String to Int
https://medium.com/paulacy-pulse/convert-python-string-to-int-4a4615e73683
https://medium.com/paulacy-pulse/convert-python-string-to-int-4a4615e73683
Medium
Convert Python String to Int
In Python, you can convert a string to an integer using the `int()` function. This can be useful when you receive input in string format, but you need to perform mathematical operations on the input…