Blog

  • Announcing: Two Python courses in Tel Aviv

    Good news for developers in Israel — I’ll be offering two open-enrollment courses in Tel Aviv next month (January): Advanced Python: If you’ve already been using Python for at least six months, and want to level up your knowledge of this hot language, then this course is for you.  I’ll talk about advanced data structures,…

    Read more

  • Announcing: Weekly Python Exercise, Newbie Edition

    Are you new to Python, and looking for relatively easy exercises to reinforce what you’ve learned? Do you use Python every day, but rely on Stack Overflow to answer questions like, “Which parentheses should I use here,” or, “What’s the difference between a list and dict?” Are you an experienced developer in other languages, and…

    Read more

  • Last chance to save 40% on Python and Git courses

    Today (Monday) is the last day to benefit from my weekend sale, with 40% off of my books and courses!  Just enter the coupon code “BF2018” for any product , and take 40% off. This offer includes my new “Intro Python: Fundamentals” course, containing the 1st day of the 4-day training I give to experienced…

    Read more

  • Black Friday sale — improve your Python + Git for 40% off!

    Yup — just like everyone else, I’m having a Black Friday sale on all of my online books and courses. Just this weekend, you can use the coupon code BF2018 to improve your Python skills: Object-Oriented Python Understanding and Mastering Git Comprehending Comprehensions Practice Makes Python, complete edition Practice Makes Python, just the book Practice…

    Read more

  • Last chance: Weekly Python Exercise registration closes soon

    You probably want to understand Python better, use it more efficiently, and write code that you (and others) can maintain — for yourself, your current job, and your career. Weekly Python Exercise lets you make that improvement.  Over the course of a year, you learn to solve more interesting, useful, and complex problems.  You’ll learn…

    Read more

  • Weekly Python Exercise: Registration closes in two days

    This is just a reminder that registration for the next cohort of Weekly Python Exercise, my course that combines exercises and community to turn you into an advanced Python developer, closes in just two days, on September 18th. If you’ve always wanted to improve your understanding of such topics as functions, objects, decorators, generators, comprehensions,…

    Read more

  • Announcing: Weekly Python Exercise, Autumn 2018 cohort

    Just about every day for the last decade, I’ve taught Python to developers at companies around the world. And if there’s anything that those developers want, it’s to improve their Python fluency. Being a more fluent Python developer doesn’t only mean being able to solve problems faster and better — although these are nice benefits,…

    Read more

  • Avoiding Windows backslash problems with Python’s raw strings

    I’m a Unix guy, but the participants in my Python classes overwhelmingly use Windows. Inevitably, when we get to talking about working with files in Python, someone will want to open a file using the complete path to the file.  And they’ll end up writing something like this: filename = ‘c:\abc\def\ghi.txt’ But when my students…

    Read more

  • A quick intro to the Unix “find” utility

    One of the most powerful Unix command-line utilities is “find” — but it also has a huge number of options, and most of the documentation I’ve read on “find” is hard to follow and understand.  That’s a shame, because once you understand what “find” does and how it works, you can accomplish quite a bit. …

    Read more

  • Python parentheses primer

    If you have children, then you probably remember them learning to walk, and then to read. If you’re like me, you were probably amazed by how long it took to do things that we don’t even think about. Things that we take for granted in our day-to-day lives, and which seem so obvious to us,…

    Read more