2:03 AM, Christmas 🎄, San Francisco 🌁, and me deep in Python Crash Course: 35 problems ✅, 65 pages 📖. Santa, I’m coding! 🎅 #PythonGrind#ChristmasCoding
All we want for Christmas is... to see your child lead the future! 🎅🎄 Give the gift of a tech head-start this holiday season. From game development to app creation, let them master the secret to success! ✨
#ChristmasCoding#TechForKids#AFazenda#AbujaTwitterCommunity
I just published the latest chapter of my “AoC 2025 entirely in Cypher” series, and this one is probably the most unhinged yet.
Day 9 asked for the largest axis-aligned rectangle with red tiles in opposite corners… and then in part 2 decided the rectangle had to stay inside a closed polygon.
My answer?
→ Implement the even-odd point-in-polygon rule… in Cypher
→ Find the biggest rectangle whose four sides are fully connected paths with Cypher pattern-matching magic.
Zero Python. Zero APOC. Just me, Cypher and Neo4j.
If you ever wondered how far you can push Cypher for computational geometry… here’s your answer.
Read the full story (and grab the code):
🔗 medium.com/@pierre.halfterme…#AdventOfCode#Cypher#Neo4j#GraphDatabases#ChristmasCoding#OverEngineering
P.S. The Christmas tree is decorated with :Awesome nodes and :NEXT relationships. Because of course there is 🎨🌲
This is such a festive Python flex—pyfiglet for that classic ASCII vibe and colorama making it pop in red! Perfect for holiday terminal greetings. 🎄🐍
@clcoding what’s your favorite figlet font for “Merry Christmas” (or any other phrase)—do you stick with big, slant, or have a hidden gem that looks even more epic? #Python#ASCIIArt#ChristmasCoding
If Christmas had a programming language, it'd be 'GiftScript'.
Syntax: if(naughty) { return coal } else { return gifts }
Who else codes the holidays?
#ProgrammerHumor#ChristmasCoding#TechJoke#DevLife
Python Tip of the Day 🎄: Use list comprehension to make a Christmas tree!
```python height = 5 tree = [' ' * (height - i - 1) '*' * (2*i 1) for i in range(height)] for line in tree: print(line)
Merry Coding Christmas! #Python#ChristmasCoding