Better than grep
In the process of writing Unlearning SQL, I had a need to extract SQL blocks from Python programs. Of course, I tried grep. It wasn't ideal.
Note
Book is available here:
In the process of writing Unlearning SQL, I had a need to extract SQL blocks from Python programs. Of course, I tried grep. It wasn't ideal.
Note
Book is available here:
Big Announcement: the 2024.8 version of Unlearning SQL, and the 2024.9 version of Pivot to Python are available from booksellers online. Both are revised and all the code tested with Python 3.12.
This book shows you how to translate essential SQL concepts into the Python …
Book (pre) Announcement:
I've published a framework for doing SQL-like programming in Pure Python -- no database required.
Here: https://github.com/slott56/functional-SQL. See the functional-SQL documentation.
This allows us to transform SQL:
SELECT n.name, v.c2
FROM names_table n, values_table v
WHERE n.code = v.c1
To pure Python:
Select(name …
See https://www.packtpub.com/product/functional-python-programming-third-edition/9781803232577
Much newness here.
https://books.apple.com/us/book/pivot-to-python/id1586977675
I've recently updated this to fix some cosmetic problems with title pages, the table of contents and …
https://books.apple.com/us/book/pivot-to-python/id1586977675
I've recently updated this to fix some cosmetic problems with title pages, the table of contents and stuff like that. The content hasn't changed. Yet. It's still an introduction to …
I started with the Apple Books platform because it's an easy default for me.
https://books.apple.com/us/book/pivot-to-python/id1586977675
I've recently updated this to fix some cosmetic problems with title pages, the table of contents and stuff …
First, there's
https://books.apple.com/us/book/pivot-to-python/id1586977675
I've recently updated this to fix some cosmetic problems with title pages, the table of contents and stuff like that. The content hasn't changed. Yet. It's still an introduction to …
This cropped up recently. It's part of a "replace Mongo with Relational DB" conversation.
I'm going to elide the conversation down to five key points. The three post-hoc nonsensical ideas, and the two real points.
What's (to me) very telling is that someone else published the five reasons in this …
more ...