Skip to content

Instantly share code, notes, and snippets.

View pung96's full-sized avatar

Beomsu Chang pung96

  • University of Jyvaskyla
View GitHub Profile
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
@keedi
keedi / app.psgi
Created December 28, 2011 18:16
perldoc-server with plack
#!/usr/bin/env perl
use strict;
use warnings;
use Perldoc::Server;
use Plack::Builder;
my $app = Perldoc::Server->psgi_app(@_);
@JEEN
JEEN / adv-cal.md
Created December 10, 2011 11:31
adv-cal

Title: DBIx::Class 의 지속적인 Schema 관리를 위해서 Package: Seoul.pm Category: perl Category: Seoul.pm Author: JEEN_LEE

저자

[@JEEN_LEE][twitter-jeen_lee] - 0x1c살, 하니아빠, 키보드워리어, 영농후계자, 곶감판매업, 뿌나홀릭, silex 막내

username: 'pung96a@gmail.com'
password: ''
album_id: ''
@soemarko
soemarko / theme.html
Created November 26, 2011 16:18
embed github gist to tumblr
<!-- 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>
-->
@aero
aero / Perl_OOP_benchmark.pl
Created September 15, 2011 02:27
Moose vs Mouse vs Moo vs Mo
* Bo.pm
package Bo;
sub new {
my ($class) = @_;
return bless { buff => 0 }, $class;
}
sub buff {