I hereby claim:
- I am foeken on github.
- I am dreetje (https://keybase.io/dreetje) on keybase.
- I have a public key whose fingerprint is 7DC5 D6AA 64D6 6CF1 FF9E 0686 65BB 0DBC E7CE 60FE
To claim this, I am signing this object:
class Net::HTTP < Net::Protocol | |
def connect | |
end | |
end | |
class Net::HTTPResponse | |
def body=(content) | |
@body = content | |
@read = true | |
end |
Feature: Accessing the people api | |
As an API client | |
In order to do things with people | |
I want to access the people api | |
Background: | |
Given a client application named "Ons Medewerkersportaal" | |
And "Ons Medewerkersportaal" is allowed to use xAuth | |
And an account "Andre" with email "[email protected]" | |
And an account "Ria" with email "[email protected]" |
require 'mail' | |
require 'tmail' | |
class BodyParts | |
def self.rules | |
[ | |
# Dutch signatures | |
{ :server => 'Signature #1', :reply_delimiter => /^\r\nMet vriendelijke groet./m }, | |
{ :server => 'Signature #2', :reply_delimiter => /^\r\nGroet./m }, | |
{ :server => 'Signature #3', :reply_delimiter => /^\r\nmvg./m }, |
Raphael.fn.drawGrid = function (x, y, w, h, wv, hv, color) { | |
color = color || "#000"; | |
var path = ["M", Math.round(x) + .5, Math.round(y) + .5, "L", Math.round(x + w) + .5, Math.round(y) + .5, Math.round(x + w) + .5, Math.round(y + h) + .5, Math.round(x) + .5, Math.round(y + h) + .5, Math.round(x) + .5, Math.round(y) + .5], | |
rowHeight = h / hv, | |
columnWidth = w / wv; | |
for (var i = 1; i < hv; i++) { | |
//path = path.concat(["M", Math.round(x) + .5, Math.round(y + i * rowHeight) + .5, "H", Math.round(x + w) + .5]); | |
} | |
for (i = 1; i < wv; i++) { | |
//path = path.concat(["M", Math.round(x + i * columnWidth) + .5, Math.round(y) + .5, "V", Math.round(y + h)]); |
Beste, | |
Jammergenoeg is de wet van Dam in 2011 in werking getreden die consumenten beschermt hiertegen. Bij een opzegging van een dienst is een maandelijkse opzegtermijn verplicht. Bij opzeggen dient het openstaande gefactureerde bedrag terug te worden betaald. Aangezien het hier gaat over een stilzwijgende verlenging na 2011 is de wet van toepassing. Er is zelfs jurisprudentie over hosting bedrijven en domeinaanvragen. | |
Dus nogmaals vraag ik u te voldoen aan de wet en de openstaande factuur te crediteren. | |
http://www.opzeggen.nl/wet-van-dam | |
BRON: http://ictrecht.nl/contracten-en-algemene-voorwaarden/veelgestelde-vragen-over-de-wet-van-dam/ | |
##Geldt de Wet Van Dam ook voor hosting en domeinnamen? |
Feature: Adaptive layout functionality | |
As a registered user | |
In order to productive on a range of devices | |
I want Caren Pro to fluidly scale the amount of information displayed | |
Background: | |
Given a care provider "Care4All" | |
And a "Care4All" employee "Andre" | |
And "Andre" has an activated account | |
And "Andre" is logged in |
# Take the following setup, this works if everything is inside a single file. | |
# app/foo/monkey.rb | |
module Foo | |
module Monkey | |
puts "Monkey" | |
end | |
end | |
# app/foo/nut.rb |
I hereby claim:
To claim this, I am signing this object:
// Hack the 1password extention on OSX: | |
// Locate: /Users/[USERNAME]/Library/Application Support/Google/Chrome/Default/Extensions/aomjjhallfgjeglblehebfpbcfeobpgk | |
// Add this to global.min.js, look for var Ka = [{template},{template},{template}] | |
{ | |
template_for: [/:\/\/mijn\.ing\.nl\//], | |
hints: [ | |
["input[type=text]", "username"], | |
["input[type=password]", "password"] |
class Zendesk | |
ENDPOINT = "https://[DOMAIN].zendesk.com/api/v2" | |
USER = "[YOUR_USER_NAME]" | |
USER_ID = 0 #[YOUR_USER_ID] | |
TARGET_VIEW = 0 #[VIEW_ID] | |
BODY_FIELD_ID = 0 # [CUSTOM_BODY_FIELD_ID], We use an internal body | |
REPO_NAME_FIELD_ID = 0 #[REPO_NAME_FIELD_ID], We use a selectbox | |
GITHUB_FIELD_ID = 0 #[GITHUB_FIELD_ID], We use a checkbox |