Building web applications is hard, and one aspect that complicates matters is deciding where to put the computation for a particular task. The same problem can be solved in almost any layer with any technology.
read the whole post »Tag: python
-
-
Ansible for configuration management
Configuration management can be tricky, but Ansible makes it simple.
read the whole post » -
a tour of python’s ElementTree path language
Python’s ElementTree package offers its own path language that serves as a less confusing subset of xpath. Let's explore its usage and implementation.
read the whole post » -
zope at chipy
I presented on Zope Interfaces at the April, 2012 ChiPy meeting.
read the whole post » -
exec() yourself silly
exec() - cruise-control for awesome
read the whole post » -
default function parameter values in python
Corner-cases of default parameter values in Python.
read the whole post » -
stupid closure tricks in py3k
Python 3 and its nonlocal keyword.
read the whole post » -
simple s-expression parser in python
Exploring Python and Lisp by writing a simple s-expression parser from scratch.
read the whole post » -
delaying computation: lazy dictionaries in Python
A lazy dictionary in Python.
read the whole post » -
python thirty days ago
These tiny things make Python fun and useful:
read the whole post »import datetime thirty_days = datetime.timedelta(days=30) thirty_days_ago = datetime.date.today() - thirty_days
Page 1 / 2 »