Find out more about the @ramendan event on their website http://ramendan.com.
There is only a few days left, and here is how I prepare myself for Ramendan. First of all, I did some research to find restaurants in Berlin that serve Ramen.
Find out more about the @ramendan event on their website http://ramendan.com.
There is only a few days left, and here is how I prepare myself for Ramendan. First of all, I did some research to find restaurants in Berlin that serve Ramen.
| @mixin gradient($first, $second) { | |
| background-color: $second; | |
| -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#{ie-hex-str($first)}', endColorstr='#{ie-hex-str($second)}');"; | |
| filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#{ie-hex-str($first)}', endColorstr='#{ie-hex-str($second)}');; | |
| zoom: 1; | |
| background: -webkit-gradient(linear, left top, left bottom, from($first), to($second)); | |
| background: -moz-linear-gradient(top, $first, $second); | |
| } |
| source :rubygems | |
| gem "aws-s3", :require => 'aws/s3' |
| /* Exercise: Loops and Functions #43 */ | |
| package main | |
| import ( | |
| "fmt" | |
| "math" | |
| ) | |
| func Sqrt(x float64) float64 { | |
| z := float64(2.) |
| class ApplicationController < ActionController::Base | |
| ... | |
| #Problem: | |
| #In rails 3.0.1+ it is no longer possible to do this anymore; | |
| # rescue_from ActionController::RoutingError, :with => :render_not_found | |
| # | |
| #The ActionController::RoutingError thrown is not caught by rescue_from. | |
| #The alternative is to to set a catch-all route to catch all unmatched routes and send them to a method which renders an error | |
| #As in http://techoctave.com/c7/posts/36-rails-3-0-rescue-from-routing-error-solution |
| http://www.frischeparadies.eu/?view=featured | |
| http://www.markthalle9.de/ | |
| http://www.meine-markthalle.de/ | |
| http://www.exberliner.com/articles/the-ethical-carnivore/ | |
| http://www.fleischerei-gerlach.de/index.html | |
| http://www.neuland-kluge.de/ | |
| http://www.fleischerei-buenger.de/ |
| /** | |
| * @license Angular Auth | |
| * (c) 2012 Witold Szczerba | |
| * License: MIT | |
| */ | |
| angular.module('angular-auth', []) | |
| /** | |
| * Holds all the requests which failed due to 401 response, | |
| * so they can be re-requested in the future, once login is completed. |
| class ChangeValidator < ActiveModel::EachValidator | |
| # Enforce/prevent attribute change | |
| # | |
| # Example: Make attribute immutable once saved | |
| # validates :attribute, change: false, on: :update | |
| # | |
| # Example: Force attribute change on every save | |
| # validates :attribute, change: true | |
| def initialize(options) |