Title: DBIx::Class 의 지속적인 Schema 관리를 위해서 Package: Seoul.pm Category: perl Category: Seoul.pm Author: JEEN_LEE
[@JEEN_LEE][twitter-jeen_lee] - 0x1c살, 하니아빠, 키보드워리어, 영농후계자, 곶감판매업, 뿌나홀릭, silex 막내
| on open theseFiles | |
| set listSize to count of theseFiles | |
| set counter to 1 | |
| set results to "" | |
| tell application id "com.Growl.GrowlHelperApp" | |
| set the allNotificationsList to {"Uploaded"} | |
| set the enabledNotificationsList to {"Uploaded"} | |
| register as application "PicasaUploader" all notifications allNotificationsList default notifications enabledNotificationsList icon of application "Script Editor" | |
| notify with name "Uploaded" title "Start Picasa Upload" description "( " & listSize & " ) File(s)" application name "PicasaUploader" | |
| repeat with thisFile in theseFiles |
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use Perldoc::Server; | |
| use Plack::Builder; | |
| my $app = Perldoc::Server->psgi_app(@_); |
| username: '[email protected]' | |
| password: '' | |
| album_id: '' |
| <!-- Add the following lines to theme's html code right before </head> --> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script> | |
| <script src="http://static.tumblr.com/fpifyru/VCxlv9xwi/writecapture.js"></script> | |
| <script src="http://static.tumblr.com/fpifyru/AKFlv9zdu/embedgist.js"></script> | |
| <!-- | |
| Usage: just add <div class="gist">[gist URL]</div> | |
| Example: <div class="gist">https://gist.github.com/1395926</div> | |
| --> |
| * Bo.pm | |
| package Bo; | |
| sub new { | |
| my ($class) = @_; | |
| return bless { buff => 0 }, $class; | |
| } | |
| sub buff { |