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
@mixin when-sized-medium { @include when-narrower-than(1000px) { @content }} | |
@mixin when-sized-small { @include when-narrower-than(700px) { @content }} | |
.container { | |
width: 1000px; | |
margin: 0 auto; | |
padding-bottom: 40px; | |
@include when-sized-medium { width: 700px; } | |
@include when-sized-small { |
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
*:first-child { margin-top: 0 !important } | |
*:last-child { margin-bottom: 0 !important } |
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
@import url(http://fonts.googleapis.com/css?family=Inder|PT+Serif:400,700,400italic,700italic); | |
// Use custom fonts, yeah | |
$font-default: 16px "PT Serif"; | |
$font-header: 15px "Inder"; | |
// How about a different color scheme? | |
$color-background: #333; | |
$color-text: #ccc; | |
$color-extra: #f93; |
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
Show hidden characters
{ | |
// visuals | |
"theme": "Soda Light.sublime-theme", | |
"color_scheme": "Packages/User/Espresso Soda.tmTheme", | |
"font_face": "Menlo", | |
"font_size": 13, | |
"line_padding_bottom": 1, | |
"line_padding_top": 1, | |
"highlight_line": true, | |
"rulers": [80], |
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
canvas = null | |
context = null | |
x = 0 | |
y = 250 | |
r = 0.0 | |
img = new Image() | |
img.src = '/images/serve-logo.png' | |
$ -> |
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
Profile "Ruby on Rails seit 2005" | |
New matches: 6 | |
- "#13003 Solution Designer (m/w)", Dortmund, Deutschland | |
Matching skills: php, html, sql, css | |
- "PHP Fehlerbehebung! function.session-start" | |
Matching skills: php, html | |
- "#13058 Portal Administrator (m/w) Java/Linux/MySQL" |
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
$listenerOptions = new Zend\Module\Listener\ListenerOptions($appConfig['module_listener_options']); | |
$defaultListeners = new Zend\Module\Listener\DefaultListenerAggregate($listenerOptions); | |
$defaultListeners->getConfigListener()->addConfigGlobPath('config/autoload/*.config.php'); |
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
# So here's the new rbfu invocation style I'm tinkering with. | |
# If you want to play around with it, you can get it from the | |
# 'rbfu-exec' branch in rbfu: | |
# | |
# https://github.com/hmans/rbfu/tree/rbfu-exec | |
# | |
# The overall syntax is: | |
# | |
# rbfu [@<version>] <command> | |
# |
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
class Fleximage::Operator::Polaroid < Fleximage::Operator::Base | |
def operate(angle_range = 10, border_width = 10) | |
@image.border!(border_width, border_width, "#f0f0ff") | |
# Bend the image | |
@image.background_color = "none" | |
amplitude = @image.columns * 0.01 # vary according to taste | |
wavelength = @image.rows * 2 |
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
# User information. Replace with your own data, obviously. | |
# | |
[user] | |
name = Hendrik Mans | |
email = [email protected] | |
# Automatically track branches with the same name | |
# | |
[branch] | |
autosetupmerge = true |