Season 1 Lesson 9 Part 4 - Your First Steps Python Booleans Made Easy For Professional Coders Fast #pythonprogramming #learncoding #softwaredeveloper #codingtutorial #jupyternotebook #dataengineer #pythoncode #dataanalysis #softwarengineer #python
Season 1 Lesson 9 Part 3 - Your First Steps Learn Python Split Fast Real Coding Use Cases#pythonprogramming #learncoding #softwaredeveloper #codingtutorial #jupyternotebook #dataengineer #pythoncode #dataanalysis #softwarengineer #python
Season 1 Lesson 9 Part 2 - Your First Steps Python Zfill Explained Fast Zero Padding Numbers Easily #pythonprogramming #learncoding #softwaredeveloper #codingtutorial #jupyternotebook #dataengineer #pythoncode #dataanalysis #softwarengineer #python
Season 1 Lesson 9 Part 1 - Your First Steps How to Change Multiple Characters at Once in Python #pythonprogramming #learncoding #softwaredeveloper #codingtutorial #jupyternotebook #dataengineer #pythoncode #dataanalysis #softwarengineer #python
Fabric Connection in notebooks - Microsoft Fabric

Learn about how you can use a Fabric Connection to access external data sources directly in notebooks.

Season 1 Lesson 8 Part 9 - Your First Steps Partition method in Python Splitting Text into 3 Parts #pythonprogramming #learncoding #softwaredeveloper #codingtutorial #jupyternotebook #dataengineer #pythoncode #dataanalysis #softwarengineer #python
Season 1 Lesson 8 Part 8 - Your First Steps Checking Title Case in Strings in Python #pythonprogramming #learncoding #python #softwaredeveloper #codingtutorial #jupyternotebook #dataengineer #pythoncode #dataanalysis #softwarengineer
Season 1 Lesson 8 Part 7 - Your First Steps Check if a String Contains Only Letters in Python #dataengineer #pythoncode #pythonprogramming #learncoding #python #softwaredeveloper #codingtutorial #jupyternotebook #dataanalysis
Season 1 Lesson 8 Part 6 - Your First Steps Checking Letters and Numbers in a String #jupyternotebook #dataanalysis #dataengineer #pythoncode #pythonprogramming #learncoding #python #softwaredeveloper #codingtutorial

I always envied Python developers typing plt.show() in Jupyter and getting a beautiful graph.

So I built the Ruby equivalent.

Docker + JupyterLab + Ruby kernel + ruby-libgd:

```
plot = Plot.new
plot.add("sin(x)")
plot.add("x**2 + y**2 - 9", type: :implicit)
plot.render("/work/graph.png")
```

Scientific plotting is coming to Ruby. Full article on RubyStackNews — link in comments.

https://rubystacknews.com/2026/03/13/plotting-mathematical-functions-in-ruby-inside-jupyter/

#Ruby #JupyterNotebook #OpenSource #RubyLibGD