Skip to content

Instantly share code, notes, and snippets.

View akamola's full-sized avatar

Arne akamola

View GitHub Profile
@akamola
akamola / .htaccess
Created May 31, 2013 08:34
HTACCESS: Basic configuration for web projects for Apache web servers
# PHP
php_flag register_globals off
php_flag short_open_tag off
# Set default charset to UTF-8
AddDefaultCharset UTF-8
# File types
@akamola
akamola / sub.sublime-snippet
Created March 21, 2013 14:02
Sublime Text 2: Snippet for Perl subroutines
<snippet>
<content><![CDATA[sub ${1:function_name} {
${0:# Code ...}
}
]]></content>
<tabTrigger>sub</tabTrigger>
<scope>source.perl</scope>
<description>Subroutine</description>
</snippet>