This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | (defun xcode-buildandrun () | |
| (interactive) | |
| (do-applescript "tell application \"Xcode\" | |
| activate | |
| end tell | |
| tell application \"System Events\" | |
| key code 15 using {command down} | |
| end tell")) | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | From 837ffd5cd282df217863cb5593271d66308d4bd7 Mon Sep 17 00:00:00 2001 | |
| From: Daisuke Murase <typester@cpan.org> | |
| Date: Thu, 17 Sep 2009 19:21:44 +0900 | |
| Subject: [PATCH] add on_error to stream handler | |
| --- | |
| lib/AnyEvent/Twitter/Stream.pm | 4 ++++ | |
| 1 files changed, 4 insertions(+), 0 deletions(-) | |
| diff --git a/lib/AnyEvent/Twitter/Stream.pm b/lib/AnyEvent/Twitter/Stream.pm | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | From 837ffd5cd282df217863cb5593271d66308d4bd7 Mon Sep 17 00:00:00 2001 | |
| From: Daisuke Murase <typester@cpan.org> | |
| Date: Thu, 17 Sep 2009 19:21:44 +0900 | |
| Subject: [PATCH] add on_error to stream handler | |
| --- | |
| lib/AnyEvent/Twitter/Stream.pm | 4 ++++ | |
| 1 files changed, 4 insertions(+), 0 deletions(-) | |
| diff --git a/lib/AnyEvent/Twitter/Stream.pm b/lib/AnyEvent/Twitter/Stream.pm | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | use strict; | |
| use warnings; | |
| use Getopt::Long; | |
| use AnyEvent::Socket; | |
| use AnyEvent::Handle; | |
| use HTTP::Parser::XS qw(parse_http_request); | |
| GetOptions( | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | Rate AnyEvent::Gearman::Client Gearman::Client::Async | |
| AnyEvent::Gearman::Client 1435/s -- -60% | |
| Gearman::Client::Async 3571/s 149% -- | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | From e3d97037aafb701374c02bf5cd1a3d7e2454188c Mon Sep 17 00:00:00 2001 | |
| From: Daisuke Murase <typester@cpan.org> | |
| Date: Wed, 26 Aug 2009 11:03:06 +0900 | |
| Subject: [PATCH] fixed a cleanup bug | |
| --- | |
| lib/AnyEvent/Twitter/Stream.pm | 4 +- | |
| t/cleanup.t | 62 ++++++++++++++++++++++++++++++++++++++++ | |
| 2 files changed, 64 insertions(+), 2 deletions(-) | |
| create mode 100644 t/cleanup.t | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | From e3d97037aafb701374c02bf5cd1a3d7e2454188c Mon Sep 17 00:00:00 2001 | |
| From: Daisuke Murase <typester@cpan.org> | |
| Date: Wed, 26 Aug 2009 11:03:06 +0900 | |
| Subject: [PATCH] fixed a cleanup bug | |
| --- | |
| lib/AnyEvent/Twitter/Stream.pm | 4 +- | |
| t/cleanup.t | 62 ++++++++++++++++++++++++++++++++++++++++ | |
| 2 files changed, 64 insertions(+), 2 deletions(-) | |
| create mode 100644 t/cleanup.t | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | use strict; | |
| use warnings; | |
| use YAML; | |
| use AnyEvent; | |
| use AnyEvent::Run; | |
| my $cv = AnyEvent->condvar; | |
| my $w = AnyEvent::Run->new( | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/perl | |
| use strict; | |
| use warnings; | |
| use HTTP::Request::Common; | |
| use AnyEvent::HTTP; | |
| use AnyEvent::ReverseHTTP; | |
| use Digest::SHA1 qw/sha1_hex/; | |
| my $proxy_to = $ARGV[0] or die 'require proxy target'; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | use strict; | |
| use warnings; | |
| use FindBin::libs; | |
| use Schema; | |
| Schema->connect->create_ddl_dir; | |