CARVIEW |
joshthecoder
(Joshua Roesslein)
- You’re not logged in!
- Login
- Pricing & Signup
- Name
- Joshua Roesslein
- Location
- WI, USA
- Member Since
- Sep 21, 2008 (about 1 year)
- 12 public repos
- 11 followers
Following 6 githubbers and watching 37 repositories view all →
Public Repositories (12)
-
conjure
simple, lightweight session middleware for python
Last updated Sun Nov 29 23:52:39 -0800 2009
-
tweepy
twitter api library for python
Last updated Sun Nov 29 21:19:52 -0800 2009
-
mongo-python-driver
Python driver for MongoDB
Forked from mongodb/mongo-python-driver Wed Nov 25 16:13:15 -0800 2009
Last updated Wed Nov 25 16:14:34 -0800 2009
-
tweepy-examples
Tweepy examples
Last updated Thu Nov 19 23:19:43 -0800 2009
-
pystache
Mustache in Python
Forked from defunkt/pystache Mon Nov 16 17:13:35 -0800 2009
Last updated Mon Nov 16 22:46:23 -0800 2009
-
titanium_desktop
Appcelerator Titanium Desktop
Forked from appcelerator/titanium_desktop Wed Sep 02 08:45:26 -0700 2009
Last updated Sun Nov 15 21:48:19 -0800 2009
-
kroll
Appcelerator Kroll
Forked from appcelerator/kroll Thu Jul 09 11:29:34 -0700 2009
Last updated Sun Nov 15 21:47:25 -0800 2009
-
python-oauth
Python OAuth library from Google code.
Forked from leah/python-oauth Thu Sep 17 13:49:53 -0700 2009
Last updated Wed Nov 11 20:40:23 -0800 2009
-
shorty-python
python library for accessing many url shortening services
Last updated Sat Nov 07 21:58:03 -0800 2009
-
tweepy-more
Tweepy extensions that provide additional features not included in the core Tweepy library
Last updated Wed Nov 04 12:17:12 -0800 2009
-
mousetrap
web-based remote mouse and keyboard controller
Last updated Mon Nov 02 22:36:26 -0800 2009
-
baconfile-python
python library for baconfile.com api
Last updated Tue Jul 14 20:26:45 -0700 2009
Public Activity 

-
joshthecoder committed ff85f2bd:
Some fix ups for memory backend.

-
joshthecoder committed 7271c618:
Implemented lock/release methods for memory backend. Add tests for backend locking.
-
joshthecoder committed 1d26ede3:
Protect Memory backend with a lock.
-
joshthecoder committed 4b9898c1:
Plugin auto locking of session into session manager.
-
joshthecoder committed f8611172:
Add lock/release methods to Session objects.
-
joshthecoder committed 3842aedb:
Add lock/release methods to backend interface.

-
joshthecoder committed 9bec365a:
Allow passing custom API instance into stream listener.

-
joshthecoder committed f85201f4:
Add "on_data" method to stream listener to allow for access raw stream data.

-
joshthecoder committed 475c5e23:
Merge branch 'master' into py3k
-
joshthecoder committed 20dab8b7:
Merge branch 'master' of git@github.com:joshthecoder/tweepy
-
joshthecoder committed b4e6b029:
Try using simplejson first, and if not found then try using built-in json module.

-
joshthecoder committed 20dab8b7:
Merge branch 'master' of git@github.com:joshthecoder/tweepy
-
joshthecoder committed b4e6b029:
Try using simplejson first, and if not found then try using built-in json module.

-
joshthecoder committed 2b111419:
Fix Collection.remove() to allow optional spec parameter. This allows deleting all records in a collection.

-
joshthecoder committed 6259eb15:
Merge branch 'master' into py3k
-
joshthecoder committed 8226668b:
Fix 'source' parameter parsing in statuses.
-
joshthecoder committed 0b530bf4:
The streaming API Stream object can be run either in async/synch modes. See CHANGELOG for details.

-
joshthecoder committed 8226668b:
Fix 'source' parameter parsing in statuses.

-
joshthecoder committed c53a7a72:
Some improvements to tweet print out format.
-
joshthecoder committed 9ea4824c:
Update streamwatcher to use synch. mode and run in main thread only.

-
joshthecoder committed 739a0d72:
Some 2to3 fixes.
-
joshthecoder committed a4b03d50:
Merge branch 'master' into py3k
-
joshthecoder committed eb1d8bb8:
Move parameters into POST body in streaming.py to avoid "head too big" errors. Thanks Pascal!
-
joshthecoder committed 5a804ffa:
Update contributors file.
-
joshthecoder committed 3aaf58b7:
Bump version to 1.4

-
joshthecoder committed 0b530bf4:
The streaming API Stream object can be run either in async/synch modes. See CHANGELOG for details.

-
joshthecoder committed eb1d8bb8:
Move parameters into POST body in streaming.py to avoid "head too big" errors. Thanks Pascal!
-
joshthecoder committed 5a804ffa:
Update contributors file.
Appcelerator Titanium Mobile

-
joshthecoder committed b3d518fe:
Ignore any unicode strings we fail to print.

-
joshthecoder committed 3aaf58b7:
Bump version to 1.4
Error in importing tweepy

-
joshthecoder committed e6899a47:
Be sure to cast value to a string for unescaped tags.

-
joshthecoder committed 8bcbb448:
Avoid try/block for detecting callable attributes. Allow for callable context attributes.
-
joshthecoder committed 88b55d1f:
Merge branch 'master' of git://github.com/defunkt/pystache
-
joshthecoder committed 5a45a1cd:
Revert "Better way to perform callable check. Allow callables from context
-
defunkt committed 6e83a2e3:
Revert "Better way to perform callable check. Allow callables from context attributes."
-
joshthecoder committed 08b06f9c:
Better way to perform callable check. Allow callables from context attributes.
Bah I take that last remark back. Python 2 does have the call attribute on functions, so we can use that then. :)
Then we are python 3 safe.
Well for python 2 function do not have the call attribute, but in python 3 they do. So there we could check for the call attribute. But for python 2 using "callable" is best thing we have.
If the callable in our try block throws an exception (TypeError) we will catch that by accident and instead of letting it flow through to the top, we just return it. This could create some nightmare situations down the road for developers.
Most libraries branch off into a separte python 3 branch. If the current code base is python 3 compliant, then we should try to keep it that way and not branch it. But if it is not, then we might as well keep this change for python 2 and begin a python 3 branch.

-
joshthecoder committed d9909db0:
Better way to perform callable check. Allow callables from context attributes.

-
joshthecoder committed 7cede03f:
Merge branch 'master' of git://github.com/defunkt/pystache
-
defunkt committed ae58a99f:
who knows when 0.2.0 will drop!
-
joshthecoder committed 65646c81:
Allow using View instances as attributes.
-
joshthecoder committed f03c85c7:
Add support for using non-callables as View attributes.
Thanks! Was going to send a pull request, but guess you found it first :)

-
joshthecoder committed fcbe4b49:
Merge branch 'master' into py3k
-
joshthecoder committed ef95d9c8:
Add users search API method. API.search_users().
-
joshthecoder committed 28e864a2:
Added tests for list methods.

-
joshthecoder committed ef95d9c8:
Add users search API method. API.search_users().

-
joshthecoder committed 189badf1:
Add support for using non-callables as View attributes. Also allow using View instances as attributes.

-
Marshall Culpepper committed b4478e84:
use PRODUCT_VERSION when setting UserAgent in windows (fixes UserAgent test)
-
Marshall Culpepper committed 55ac76db:
Merge branch 'master' of git@github.com:appcelerator/titanium_desktop
-
mrobinson committed 6f39cf59:
Small cleanups and build fixes for Win32.
-
mrobinson committed df158e51:
Fix line-endings in these files.
-
Marshall Culpepper committed 1d5991f5:
fix for selecting single files in openFileChooserDialog for windows [#190 state:resolved]
-
mrobinson committed e15e3fde:
Cleanup bad merge.
-
mrobinson committed 06458880:
Allow for disabling analytics via a flag in tiapp.xml.
-
mrobinson committed 38f2478d:
Move tests from regression into appropriate test suites.
-
mrobinson committed 7a2919e8:
Remove no-longer valid undocumented default app property assertion.
-
mrobinson committed 4e3e84ab:
Remove test that fails because of security restrictions.
-
Marshall Culpepper committed a7a5b39f:
Merge branch 'master' of git@github.com:appcelerator/titanium_desktop
-
mrobinson committed 3aad4831:
Implement the WebKitTitanium proxy configuration callback.
-
mrobinson committed 6e2b1511:
Add an empty ResourceLoadDelegate.
-
Marshall Culpepper committed bdb911a3:
kroll!
-
Marshall Culpepper committed cdcb579b:
added a new update installer, implemented app updates and post-install dependency resolution in our custom MSI actions, added support for an uninstall icon. [#194]
-
mrobinson committed 62610bb3:
Remove qclean target and don't call scons -c for 'scons clean'.
-
mrobinson committed 4572c3f6:
Updates and tests for setting direct:// proxies and proxies with credentials.
-
Marshall Culpepper committed f39c7726:
Merge branch 'master' of git@github.com:appcelerator/titanium_desktop
-
Marshall Culpepper committed 0b10d40d:
Merge branch 'master' of git@github.com:appcelerator/titanium_desktop
-
Marshall Culpepper committed 7b7cca0d:
move title string for file chooser dialog up so it doesn't lose scope before the dialog is opened [#190]
And 13 more commits...