My favorites | Sign in
Google
       
Details: Show all Hide all

Last 30 days

  • Dec 09, 2009
    issue 10 (Generalized socket creation operation) reported   -   stomppy use socket.socket() directly to create a socket, and assume it unblocking. This may not be true with some global socket functions, such as socket.setdefaulttimeout(). To solve the problem, I extract the socket creation operation, so I am able to hook it. See my patch [http://blog.ftofficer.com/pub/patches/stomppy/socket_factory.patch here] or the attached copy. After apply the patch, user can use the following code snippet to workaround the issue: <pre> import stomppy import socket def MySocketFactory(*args, **kwargs): sock = socket.socket(*args, **kwargs) sock.setblocking(0) return sock stomppy._SocketFactory = MySocketFactory </pre>
    stomppy use socket.socket() directly to create a socket, and assume it unblocking. This may not be true with some global socket functions, such as socket.setdefaulttimeout(). To solve the problem, I extract the socket creation operation, so I am able to hook it. See my patch [http://blog.ftofficer.com/pub/patches/stomppy/socket_factory.patch here] or the attached copy. After apply the patch, user can use the following code snippet to workaround the issue: <pre> import stomppy import socket def MySocketFactory(*args, **kwargs): sock = socket.socket(*args, **kwargs) sock.setblocking(0) return sock stomppy._SocketFactory = MySocketFactory </pre>
  • Nov 30, 2009
    Revision 8c91d7059c (Implemented device key, and refactored ssh-based liboi imple...) pushed   -   Implemented device key, and refactored ssh-based liboi implement.
    Implemented device key, and refactored ssh-based liboi implement.
  • Nov 29, 2009
    Revision d4472d223e (Added sketch of get device information.) pushed   -   Added sketch of get device information.
    Added sketch of get device information.
  • Nov 29, 2009
    Revision 754a9969d0 (Added configure --disable-debug flag.) pushed   -   Added configure --disable-debug flag.
    Added configure --disable-debug flag.
  • Nov 29, 2009
    Revision 0ce4cef22a (Implemented sample program OISH) pushed   -   Implemented sample program OISH
    Implemented sample program OISH
  • Nov 23, 2009
    2 new revisions pushed   -   901ac89f1e:Added logging facility fe4c1f55f7:Added implementation of connect and disconnect.
    901ac89f1e:Added logging facility fe4c1f55f7:Added implementation of connect and disconnect.
  • Nov 22, 2009
    Revision 5d18b39234 (Added basic implementation sketch for ssh-based OI device.) pushed   -   Added basic implementation sketch for ssh-based OI device.
    Added basic implementation sketch for ssh-based OI device.
  • Nov 21, 2009
    2 new revisions pushed   -   dc5c95cb36:Added function sketch to manage oi devices. 11d4924f55:Changed some function specs.
    dc5c95cb36:Added function sketch to manage oi devices. 11d4924f55:Changed some function specs.
  • Nov 21, 2009
    Revision 260debea8f (Change the links to real files.) pushed   -   Change the links to real files.
    Change the links to real files.
  • Nov 21, 2009
    Revision 2c3e13c8c1 (Added initial version.) pushed   -   Added initial version.
    Added initial version.
  • Nov 21, 2009
    Project liboi created   -   Library to manage OpenInkpot based e-Ink devices
    Library to manage OpenInkpot based e-Ink devices

Earlier this year

  • Sep 15, 2009
    Starred project xbaytable
  • Sep 07, 2009
    Starred project python-multiprocessing
  • Sep 06, 2009
    issue 89 (API proxy site support) commented on   -   I created a patch to address the issue. See the attachment. A new argument of Api.__init__ was added: api_url: The base URL of twitter API. Defaults to DEFAULT_TWITTER_URL. Only specify this if you need an alternate twitter API proxy.
    I created a patch to address the issue. See the attachment. A new argument of Api.__init__ was added: api_url: The base URL of twitter API. Defaults to DEFAULT_TWITTER_URL. Only specify this if you need an alternate twitter API proxy.
  • Jul 31, 2009
    Starred project mzzc
  • Jul 31, 2009
    Starred project sinado
  • Jun 22, 2009
    Starred project chrome-delicious-extension