I hereby claim:
- I am gridsane on github.
- I am gridsane (https://keybase.io/gridsane) on keybase.
- I have a public key ASDLo5-RBNqOLxHkfKbd2P0saj9tHjSyiHel4c2qRvzQ4Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<?php | |
namespace Foo\Bar; | |
use Monolog\Handler\SwiftMailerHandler; | |
use Monolog\Logger; | |
/** | |
* SwiftMailerHtmlHandler uses Swift_Mailer to send emails with text/html body | |
*/ |
#script to copy/paste text in URXVT | |
#copyrights ? | |
#! perl | |
sub on_sel_grab { | |
my $query = $_[0]->selection; | |
open (my $pipe,'| /usr/bin/xclip -in -selection clipboard') or die; | |
print $pipe $query; | |
close $pipe; |