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
ab -n 100 -k http://klaemo.me:5984/test/hello | |
This is ApacheBench, Version 2.3 <$Revision: 655654 $> | |
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ | |
Licensed to The Apache Software Foundation, http://www.apache.org/ | |
Benchmarking klaemo.me (be patient).....done | |
Server Software: CouchDB/1.5.0 |
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
Some packages could not be installed. This may mean that you have | |
requested an impossible situation or if you are using the unstable | |
distribution that some required packages have not yet been created | |
or been moved out of Incoming. | |
The following information may help to resolve the situation: | |
The following packages have unmet dependencies: | |
libssl-dev : Depends: libssl1.0.0 (= 1.0.1-4ubuntu3) but 1.0.1-4ubuntu5.12 is to be installed | |
Recommends: libssl-doc but it is not going to be installed |
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
root@24e94f9f65f8:/# ls -l /usr/local/var/lib/ | |
total 4 | |
drwxrwxrwx 2 couchdb couchdb 4096 May 10 14:58 couchdb | |
root@24e94f9f65f8:/# sudo -i -u couchdb couchdb | |
sudo: unable to change directory to /usr/local/var/lib/couchdb: Permission denied | |
root@24e94f9f65f8:/# |
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
{ | |
"product": "product-id", | |
"from": "storage", | |
"to": "sold", | |
"volume": 10 | |
} | |
// or | |
{ | |
"product": "product-id", | |
"from": "delivery", |
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
/* ganz ans Ende der main.css */ | |
body { | |
margin: 0; | |
padding: 14px; | |
font-family: Georgia, serif; | |
font-size: 16px; | |
color: #222; | |
line-height:1.5; | |
background-color:white; | |
background-position: top left; |
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
<!-- in den <head> --> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> |
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
body { | |
font-family: Georgia, serif; | |
color: #222; | |
line-height: 1.5; | |
text-rendering: optimizeLegibility; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} |
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
var transitionend = require('transitionend-property') | |
module.exports = { | |
onTransitionEnd: function(el, fn) { | |
var self = this | |
function handler(event) { | |
fn.call(self, event) | |
el.removeEventListener(event.type, handler) | |
} | |
el.addEventListener(transitionend, handler, false) |
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
/* | |
Products flow from one location to another. This is tracked with deliveries. | |
Delivery: | |
amount | |
sourceId | |
targetId | |
productId | |
*/ | |
Delivery.belongsTo(Location, { as: 'source' }) |
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
var context = canvas.getContext('2d') | |
var img = new Image() | |
img.onload = function() { | |
context.drawImage(img, 0, 0) | |
window.URL.revokeObjectURL(this.src) | |
} | |
img.src = window.URL.createObjectURL(new Blob([data], {'type': 'image\/jpeg'})) |