PyCon APAC 2013
A recap and thank you message for the successful PyCon APAC 2013 conference held in Japan, highlighting sponsors, venue, and attendees.
A recap and thank you message for the successful PyCon APAC 2013 conference held in Japan, highlighting sponsors, venue, and attendees.
Explains Python 3.4's single dispatch for generic functions, comparing it to Lisp's CLOS system with a drum kit example.
A developer compares manual Python package release steps to OpenStack's automated process, advocating for better release automation.
A tutorial on creating a Python bot that automatically posts hot Reddit submissions to a Twitter account, using PRAW and Tweepy.
The author announces a hiatus due to preparing a 'Web Scraping in Python' talk submitted for PyCon.
A tutorial on creating a Python Twitter bot that automatically favorites tweets based on a keyword to help grow followers organically.
Author announces a new book, 'The Hacker's Guide to Python,' sharing advanced Python knowledge and best practices learned from large-scale projects like OpenStack.
A benchmark comparison of Julia, Python, R, and pqR on a Project Euler problem, exploring performance gains from JIT compilation.
A comprehensive, curated list of Python programming resources for all skill levels, covering tutorials, libraries, frameworks, and best practices.
A comprehensive list of Python learning resources, tutorials, and tools for both beginners and experienced developers.
A blog post sharing two Python scripts for solving Sudoku puzzles: a clear recursive version and a shorter, obfuscated one.
A quick guide on how to fix the 'maximum recursion depth exceeded' error in Python by increasing the recursion limit.
A summary of a whitepaper detailing new techniques for reverse-engineering Python applications like Dropbox, including security bypasses.
An exploration of the Cooley-Tukey Fast Fourier Transform (FFT) algorithm, its underlying principles, and a Python implementation from scratch.
A quick guide on how to find the version number of any Python module using the __version__ attribute.
A guide on creating a Python script to download songs from ex.fm by analyzing its API, though the service is now defunct.
Explains why to use JSON over Python's pickle for data serialization, covering security, readability, and cross-language compatibility.
A tutorial on implementing Conway's Game of Life in Python using NumPy and SciPy, with visualization via matplotlib animations.
An explanation of the 'self' variable in Python classes, covering its purpose and usage with examples.
A beginner's guide to Python socket programming, covering how to create sockets, connect to servers, and send data.