atlas news
    
Vitosh Academy : Python
02  novembre     20h41
Python Sliding Tile Puzzle DFS IDA
Vitosh    Sliding tile puzzle is something that is actually easy, if you are a fan of the Rubic Cube. And if you want to solve it with IDA (iterative Deepening A ) and with Manhattan heuristic, this is the correct place. The&Read more :
25  octobre     18h54
Frog Leap Puzzle with Depth-First Search (DFS)
Vitosh    TL;DR: We solve the classic frog leap puzzle with Depth-First Search (DFS) by generating next boards around teh blank and trying jumps before steps. This trick finds the minimal soluton in exactly N 2 2N moves. The classic frog puzzle looks like&Read more :
22  septembre     11h13
XGBoost for beginners from CSV to Trustworthy Model
Vitosh    This is what we do with in the YouTube video below: take a tiny CSV and explore it with plain words we train a strong model, using the XGBoost python library (eXtreme Gradient Boosting) pick a practical decision treshold and&Read more :
07  septembre     18h11
Correlation explained with Python
Vitosh    When you plot two variables, you see data dots scattered across the plane. Their overall tilt and shape tell you how the variables move together. Correlation turns that visual impression into a single number you can report and compare. What&Read more :
03  septembre     16h15
Python Learn Pandas with SQL Examples Football Analytics Example
Vitosh    When working with data, you will often move between SQL databases and Pandas DataFrames. SQL is excellent for storing and retrieving data, while Pandas is ideal for analysis inside Python. In this article, we show how both can be used&Read more :
23  août     19h27
Docker Basics in Excel with VBA Full CRUD Demo
Vitosh    After building a minimal FastAPI SQLite CRUD application in Docker, I wanted to show how Excel can connect directly to it. With a few lines of VBA, we can turn Excel into a client that talks to the API.&Read more :
20  août     18h15
Docker Python CRUD API Excel VBA All for beginners
Vitosh    If you are just starting with Docker and want a practical project, here is a fun one: let’s build a tiny CRUD app in Python, run it inside a Docker container, and then connect to it from Excel with VBA.&Read more :
15  août     16h23
Exploring SOAP Web Services From Browser Console to Python
Vitosh    SOAP (Simple Object Access Protocol) might sound intimidating (or funny) but it is actually a straightforward way for systems to exchange structured messages using XML. In this article, I am introducing SOAP through YouTube video, where it is explored through&Read more :
31  juillet     14h32
Introduction to Graphs in Python
Vitosh    Lately, I am reading the book Optimization Algorithms by Alaa Khamis and the chapter 3 Blind Search Algorithms, has caught my attention. The chapter starts with explaining what graphs are how these are displayed in python and I have&Read more :
20  juillet     19h15
Python Solving 7 Queen Problem with Tabu Search
Vitosh    The n-queens problem is a classic puzzle that involves placing n chess queens on an n à n chessboard in such a way that no two queens threaten each other. In other words, no two queens should share the same&Read more :