Splenda Brown Sugar is Half the Calories (and hey! half the amount!)
- Sun, 2007-07-15 03:31 — admin
Here's a nice little photo of a label on our Splenda(r) brand brown sugar "alternative."
If I'm reading that correctly, it says that simply by using half the amount of "Splenda brown sugar" as I normally would of real brown sugar, I can cut the calories in half! That...is...amazing?
While on the subject of confusing text...the following took me a while to figure out:
Consequences of an era of Overmedication
- Fri, 2007-07-13 19:22 — sjames
This is hopefully not a common occurence, but I just read about a woman being asked to medicate her child on a plane to get him to stop talking. As if that weren't bad enough, when she refused and the other passengers around her vocally supported her decision, the overreacting flight attendant caused the plane to be turned around (they were still on the ground at the airport) and the mother and child were forced off the plane!
New Statues in Chattanooga
- Sat, 2007-04-28 03:49 — sjames
Terrorism Justifiable to 43%
- Mon, 2007-03-19 17:16 — sjames
Bum Rush the Charts
- Sat, 2007-03-17 00:04 — sjames
Python Standard Library
- Thu, 2007-03-01 16:01 — sjames
Ballmer is Completely Wrong About Piracy
- Wed, 2007-02-21 14:29 — admin
Asking for a new type of Google bomb?
- Mon, 2007-02-19 18:21 — sjames
Greyfriar's Latte
- Mon, 2007-02-19 01:21 — sjames
Pylons No-Cache Decorator
- Sun, 2007-02-18 21:47 — sjames
This works in combination with decorators/functions that return pylons.Response() objects (e.g. `@jsonify`). The `no-cache` parameter is set in the HTTP response headers, preventing clients including Internet Explorer from caching the response at all. Example Usage:from decorator import decorator #must have decorator module from cheeseshop def nocache(func, *args, **kwargs): response = func(*args, **kwargs) response.headers['Cache-Control'] = 'no-cache' return response nocache = decorator(nocache) #preserves tracebacks for debugging, etc
class DataController(BaseController): @nocache #nocache decorator must come before jsonify for this to work @jsonify def getDataDict(self): return data
- « first
- ‹ previous
- 1
- 2
- 3
- 4
