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
curl -s http://USER:[email protected]/export/ |
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
curl -s https://USER:[email protected]/v1/posts/all |
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 python | |
import xml.etree.ElementTree as ET | |
import sys | |
import re | |
class OutlinerParser: | |
def __init__(self): | |
self.indent = 0 | |
self.is_note = False |
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
--- /ffp/etc/ffp.subr.orig 2010-12-14 13:52:00 +0100 | |
+++ /ffp/etc/ffp.subr 2010-12-14 14:08:29 +0100 | |
@@ -49,18 +49,18 @@ | |
proc_start() | |
{ | |
while [ $# -gt 0 ]; do | |
- _cmd=$(basename $1) | |
+ _path=$1 | |
+ _cmd=$(basename $_path) | |
eval _flags=\$$(echo $_cmd | tr '.-' '_')_flags |
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
Index: source/Perl/perl-mod-Net-Server/PKG_TAGS | |
=================================================================== | |
--- source/Perl/perl-mod-Net-Server/PKG_TAGS (revision 0) | |
+++ source/Perl/perl-mod-Net-Server/PKG_TAGS (revision 0) | |
@@ -0,0 +1 @@ | |
+perl | |
Index: source/Perl/perl-mod-Net-Server/A | |
=================================================================== | |
--- source/Perl/perl-mod-Net-Server/A (revision 0) | |
+++ source/Perl/perl-mod-Net-Server/A (revision 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
<Directory ~ "\.svn"> | |
Order allow,deny | |
Deny from all | |
</Directory> |
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
# Set Expires to maximum for assets with timestamp | |
location ~* \.(ico|css|js|gif|jp?g|png) { | |
if ($args ~* [0-9]+$) { | |
expires max; | |
break; | |
} | |
} |
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
set :application, "foobar" | |
set :deploy_to, "/home/deployer/foobar" | |
set :user, "deployer" | |
set :use_sudo, false | |
set :deploy_via, :export | |
set :repository do | |
fail "Provide TAG environment variable to select tag to deploy from." if ENV['TAG'].nil? | |
"https://svn.example.com/#{application}/tags/" + ENV['TAG'] | |
end |