Skip to content

Instantly share code, notes, and snippets.

@Nordis
Nordis / dabblet.css
Created February 20, 2012 13:21
Coollabr Task first draft
/**
* Coollabr Task first draft
*/
body {
background: #eee url('http://www.fapejo.se/Content/images/bg.png') repeat top left;
}
* {
font-family:monospace;
@Nordis
Nordis / dabblet.css
Created September 21, 2012 11:36
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body {
background-color: #f5f5f5;
width: 600px;
margin: 0 auto;
padding: 0;
}
@Nordis
Nordis / dabblet.css
Created September 21, 2012 11:43
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body {
position: relative;
}
.container {
position: absolute;
@Nordis
Nordis / WhereInTests.cs
Last active December 10, 2015 14:58
Three tests running against RavenDB 2.0 (build 2.0.2198) to test WhereIn. All tests was expected to pass but only one actually passes. On RavenDB build 1.0.960 all tests passes.
using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using Raven.Abstractions.Indexing;
using Raven.Client;
using Raven.Client.Indexes;
using Raven.Tests.Helpers;
namespace WhereInTest
{
@Nordis
Nordis / dabblet.css
Created January 17, 2013 11:28
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
#facebook-output {
width: 300px;
border: 1px solid #ccc;
}
#facebook-output p {
font-size: 20px;
@Nordis
Nordis / dabblet.css
Created February 19, 2013 11:10
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
.mobile-canvas {
width: 360px;
height: 600px;
border: 1px solid #000;
margin: 30px auto;
}
@Nordis
Nordis / dabblet.css
Created February 22, 2013 14:04
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
.btn-wrap {
width: 140px;
height: 80px;
margin: 30px;
border-radius: 14px;
background-color: #33AD7B;
@Nordis
Nordis / dabblet.css
Created February 22, 2013 14:04
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
.btn-wrap {
width: 140px;
height: 80px;
margin: 30px;
border-radius: 14px;
background-color: #33AD7B;
@Nordis
Nordis / dabblet.css
Created February 22, 2013 14:29
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
.app {
width: 480px;
height: 720px;
border: 1px solid #ccc;
background-color: #efefdf
}
using System;
using MonoTouch.UIKit;
using Diet52App.Core.iOS;
using System.Drawing;
namespace Diet52App
{
public class FoodSearchBase : UITableViewController
{
SearchViewModel searchViewModel;