Skip to content

Instantly share code, notes, and snippets.

@yannickoo
yannickoo / berlin.geo.json
Last active December 18, 2015 01:39
This JSON contains the twelve administrative division of Berlin. For an advanced JSON with all the districts see http://git.io/q7Km9g. I used the data from the OpenStreetMap (http://www.openstreetmap.org/browse/relation/16349) <3
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@yannickoo
yannickoo / example.info
Created January 25, 2013 08:42
Example Drupal module
name = Example
description = Irgendeine Beschreibung
core = 7.x
@yannickoo
yannickoo / .htaccess
Last active October 11, 2015 22:48
Redirect www to non-www for Drupal.
#
# Apache/PHP/Drupal settings:
#
# Protect files and directories from prying eyes.
<FilesMatch "\.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)(~|\.sw[op]|\.bak|\.orig|\.save)?$|^(\..*|Entries.*|Repository|Root|Tag|Template)$|^#.*#$|\.php(~|\.sw[op]|\.bak|\.orig\.save)$">
Order allow,deny
</FilesMatch>
# Don't show directory listings for URLs which map to a directory.
@yannickoo
yannickoo / .gitignore
Last active November 29, 2015 18:30
Enhanced .gitignore file for Drupal
# Ignore configuration files that may contain sensitive information.
sites/*/settings*.php
# Ignore paths that contain user-generated content.
sites/*/files
sites/*/private
# Unnecessary core files.
/README.txt
/CHANGELOG.txt
@yannickoo
yannickoo / dabblet.css
Created January 20, 2012 16:07
vertically aligned page
/* vertically aligned page */
/* postcard style */
html, body { height: 100%; text-align: center; white-space: nowrap; margin: 0}
#page { display: inline-block; vertical-align: middle; text-align: left; /* makes the content if page */ white-space: normal; /* behalf normal again */}
body:before{ content: ''; display: inline-block; height: 100%; width: 0; overflow: hidden; vertical-align: middle; margin-left: -.3em;}
/* custom style - you don't need to copy this */
body{ background-color: #000; font-family: 'Lucida Console','Courier New', monospace; color: #0f0; line-height: 20px; font-size: 15px;}
#page{ max-width: 800px; width:100%; background: #000; box-shadow: inset 0 0 10px #0f0, 0 0 40px rgba(0, 0, 0, 0.1) inset; padding: 20px; border-radius: 10px;}