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/env perl | |
use Mojolicious::Lite; | |
use File::Basename; | |
use Plack::Builder; | |
use HTML::TreeBuilder::XPath; | |
use DBI; | |
get '/' => sub { | |
my $self = shift; |
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
#!/bin/sh | |
_RSS=0 | |
_SHARED=0 | |
_PID=$1 | |
_SMAPS=`cat /proc/$_PID/smaps` | |
for i in `echo "$_SMAPS" | grep 'Rss' | awk '{print $2}'`; do | |
_RSS=`expr $_RSS + $i` | |
done |
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
#!perl | |
use strict; | |
use warnings; | |
use Furl; | |
use Imager; | |
use Text::AAlib qw(:all); | |
my $url = 'https://2.gravatar.com/avatar/0e2fa4d5e82a2addb50f03414870ea46?d=https%3A%2F%2Fidenticons.github.com%2F76d9ed40d8b87622cbfa7bc12cffbcdb.png&s=420'; | |
my $ua = Furl->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
#!perl | |
use sane; | |
use Text::Diff; | |
my ($a, $b) = ''; | |
system 'clear'; | |
say 'Paste A (Ctrl-D to end)'; |
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
#!perl | |
use sane; | |
use Config::Pit; | |
use LWP::UserAgent; | |
die unless @ARGV; | |
my $message = $ARGV[0]; |
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
/path/to/app/log/*.log { | |
weekly | |
missingok | |
rotate 12 | |
dateext | |
compress | |
delaycompress | |
notifempty | |
copytruncate | |
} |
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
#!/bin/sh | |
export HOME="/home/me" | |
export PATH="$HOME/.plenv/bin:$PATH" | |
eval "$(plenv init -)" | |
cd $HOME/app | |
exec carton exec -- "$1" |
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
module Serverspec | |
module Type | |
class Partition < Base | |
def initialize(partition, type) | |
@name = partition | |
@partition_table = {} | |
case type | |
when 'cylinder' | |
options = "-l" |
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
module Serverspec | |
module Type | |
class Supervise < Base | |
def initialize(name) | |
@name = name | |
end | |
def status | |
ret = backend.run_command("svstat /service/#{@name} | awk '{print $2}'") | |
ret[:stdout].chomp |
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
module MyApp | |
class Application < Rails::Application | |
config.autoload_paths += %W(#{config.root}/lib) | |
config.middleware.insert_before ActionDispatch::Cookies, "CookieFilter" | |
end | |
end |
OlderNewer