Google Foobar Challenge level 4 – Escape Pods

TL, DR Google Foobar is a hidden coding challenge by Google, and Escape Pods is the challenge I solved using Python in order to complete level 4. This post is part of a series on Google Foobar, with all the challenges I encountered. The full series is available here. Getting ready to run The eighth… Continue reading Google Foobar Challenge level 4 – Escape Pods

Google Foobar Challenge level 4 – Free the Bunny Workers

TL, DR Google Foobar is a hidden coding challenge by Google, and Free the Bunny Workers is the challenge I solved using Python in order to progress in level 4. This post is part of a series on Google Foobar, with all the challenges I encountered. The full series is available here. Getting ready to… Continue reading Google Foobar Challenge level 4 – Free the Bunny Workers

Google Foobar Challenge level 3 – Find the Access Codes

TL, DR Google Foobar is a hidden coding challenge by Google, and Find the Access Codes is the challenge I solved using Python in order to complete level 3. This post is part of a series on Google Foobar, with all the challenges I encountered. The full series is available here. Getting ready to run… Continue reading Google Foobar Challenge level 3 – Find the Access Codes

Google Foobar Challenge level 3 – Prepare the Bunnies’ Escape

TL, DR Google Foobar is a hidden coding challenge by Google, and Prepare the Bunnies’ Escape is the challenge I solved using Python in order to move forward in level 3. This post is part of a series on Google Foobar, with all the challenges I encountered. The full series is available here. Getting ready… Continue reading Google Foobar Challenge level 3 – Prepare the Bunnies’ Escape

Google Foobar Challenge level 3 – Bomb, Baby!

TL, DR Google Foobar is a hidden coding challenge by Google, and Bomb, Baby! is the challenge I solved using Python in order to move forward in level 3. This post is part of a series on Google Foobar, with all the challenges I encountered. The full series is available here. Controlled explosion The fourth… Continue reading Google Foobar Challenge level 3 – Bomb, Baby!

Google Foobar Challenge level 2 – Elevator Maintenance

TL, DR Google Foobar is a hidden coding challenge by Google, and Elevator Maintenance is the challenge I solved using Python in order to complete level 2. This post is part of a series on Google Foobar, with all the challenges I encountered. The full series is available here. Keeping lifts in order The third… Continue reading Google Foobar Challenge level 2 – Elevator Maintenance

Google Foobar Challenge level 2 – Numbers Station Coded Messages

TL, DR Google Foobar is a hidden coding challenge by Google, and Numbers Station Coded Messages is the challenge I solved using Python in order to progress in level 2. This post is part of a series on Google Foobar, with all the challenges I encountered. The full series is available here. Getting updates from… Continue reading Google Foobar Challenge level 2 – Numbers Station Coded Messages

Google Foobar Challenge level 1 – Re-ID

TL, DR Google Foobar is a hidden coding challenge by Google, and Re-ID is the challenge I solved using Python in order to complete level 1. This post is part of a series on Google Foobar, with all the challenges I encountered. The full series is available here. Give a better ID to minions All… Continue reading Google Foobar Challenge level 1 – Re-ID

Create GUIs for Python applications with PySimpleGUI

TL, DR PySimpleGUI is one of the easiest way to create GUIs (Graphical User Interfaces) for your Python applications. If you use PySimpleGUI you should consider supporting the project with their official Udemy course here. Python and GUIs In most of the cases, when we develop Python applications or scripts we mostly operate via command… Continue reading Create GUIs for Python applications with PySimpleGUI

Published
Categorized as Python Tagged ,

Visualize and export full Pandas DataFrames as images

TL, DR Columns or fields truncation when visualizing Pandas DataFrames can be annoying. Exporting data views for use in other contexts (such as a blog post) may also not be immediate. Using Pandas options and the dataframe-image package we can easily visualize DataFrames in their full extent (without columns of fields truncation) and save this… Continue reading Visualize and export full Pandas DataFrames as images