Kupfer is an awesome little program much like quiicksilver for mac. Plus, its in python.
So, it was missing a plugin for empathy and I set out to write one. Also relevant
Long story short, it's up and working.
More screenshots:
| # markup settings | |
| from markupfield.markup import DEFAULT_MARKUP_TYPES | |
| MARKUP_RENDERERS = DEFAULT_MARKUP_TYPES | |
| DEFAULT_MARKUP_TYPE = "plain" |
| # markup settings | |
| from markupfield.markup import DEFAULT_MARKUP_TYPES | |
| MARKUP_RENDERERS = DEFAULT_MARKUP_TYPES | |
| DEFAULT_MARKUP_TYPE = "plain" |
| #!/usr/bin/env python | |
| ### | |
| #Everything in between these three hashes is executed only in python | |
| # make console.log print stuff | |
| from __future__ import print_function | |
| class console: | |
| log = print |
policystat writes about shifting seamlessfly from PHP to Django
allbuttonspressed has come up with (part 2 of their tutorial on using django-mediagenerator)[http://www.allbuttonspressed.com/blog/django/2010/11/Offline-HTML5-canvas-app-in-Python-with-django-mediagenerator-Part-2-Drawing] to power an offline HTML5 canvas app.
No surprise. (TextCaptchaBreaker) [http://textcaptchabreaker.appspot.com/] breaks (TextCaptcha)[http://textcaptcha.com/] with amazing accuracy. Its on (github)[https://github.com/kbhomes/TextCaptchaBreaker] too.
| <!DOCTYPE html "-//W3C//DTD XHTML 1.0 Strict//EN" | |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | |
| <title>Google Maps JavaScript API Example</title> | |
| <script src="http://maps.google.com/maps?file=api&v=2&key=abcdefg&sensor=true_or_false" type="text/javascript"></script> | |
| <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> | |
| <script type="text/javascript" src="/apis/maps/include/yt_rotator.js"></script> |
| /** | |
| * @author Grgur Grisogono | |
| * | |
| * WebSQL proxy connects models and stores to local WebSQL database. | |
| * | |
| * WebSQL is only available in Chrome and Safari at the moment. | |
| * | |
| * Version: 0.11 | |
| * | |
| * TODO: respect sorters, filters, start and limit options on the Operation; failover option for remote proxies, .. |
| Ext.regModel('Person', { | |
| fields: [ | |
| {name: 'name', type: 'string'}, | |
| {name: 'age', type: 'int'}, | |
| {name: 'phone', type: 'string'}, | |
| {name: 'alive', type: 'boolean', defaultValue: true} | |
| ], | |
| proxy: { | |
| type: 'websqlproxy', |
| package com.buddyg3.android; | |
| import java.io.File; | |
| import java.io.FileOutputStream; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.OutputStream; | |
| import android.content.Context; | |
| import android.database.SQLException; |