Tag: python

  • Project Euler Problem #2

    Project Euler Problem #2

    It’s been a bit of time since my last post, but now it’s back to going through Project Euler.  The second problem works with a favorite problem in computer science:  Fibonacci numbers. 

  • Project Euler Problem #1

    Project Euler Problem #1

    Problem #1 at Project Euler is, besides being the problem with the most solutions provided to it, happens to also be a pretty good place to start working our way through the process.

  • Beta Test Starting Soon For Email Auto-Responder System

    Beta Test Starting Soon For Email Auto-Responder System

    Mailing lists … they’re one of the most popular, and easy, methods of using your website to make money.  I’ve used a few different list manager systems over the years, but they all seemed to miss (at least) one thing that I found useful or needed to make the list behave the way I wanted […]

  • Multi-Threaded Twisted / Stackless Integration

    Another way to integrate Twisted with Stackless python, is to use multiple threads. One thread handles Twisted’s reactor while Stackless tasklets run in at least one other thread. This lowers the deterministic nature of Stackless, but for certain conditions may be more effective than trying to integrate Twisted and Stackless into a single thread. Communication […]