I hereby claim:
- I am jgermade on github.
- I am jgermade (https://keybase.io/jgermade) on keybase.
- I have a public key whose fingerprint is 3456 AA0C 5F57 5223 656A A0BA B520 697D 241F 883F
To claim this, I am signing this object:
| { | |
| "toc": true, | |
| "merchant": { | |
| "confirmation_url": "https://api-demo-dev.aplazame.com/confirm", | |
| "cancel_url": "/demo-cancel.html", | |
| "success_url": "/demo-success.html" | |
| }, | |
| "customer": { | |
| "id": "140", | |
| "email": "dev@aplazame.com", |
| { | |
| "merchant": { | |
| "cancel_url": "/demo-cancel.html", | |
| "ko_url": "/demo-cancel.html", | |
| "success_url": "/demo-success.html", | |
| "close_on_success": false, | |
| "timeout_extra": 0 | |
| }, | |
| "customer": { | |
| "id": "140", |
| #!/bin/sh | |
| synclient LeftEdge=1588 | |
| synclient RightEdge=5352 | |
| synclient TopEdge=1398 | |
| synclient BottomEdge=4452 | |
| synclient FingerLow=25 | |
| synclient FingerHigh=30 | |
| synclient MaxTapTime=180 | |
| synclient MaxTapMove=247 |
| { | |
| "Horizontal Spacing" : 1, | |
| "Tags" : [ | |
| ], | |
| "Ansi 12 Color" : { | |
| "Green Component" : "0.6235294", | |
| "Blue Component" : "0.8117647", | |
| "Red Component" : "0.4470588" | |
| }, |
I hereby claim:
To claim this, I am signing this object:
| var path_setters = { | |
| radio: function (path, radio) { | |
| path.el.setAttribute('r', radio ); | |
| }, | |
| stroke_color: function (path, stroke_color) { | |
| path.stroke_color = stroke_color || 'transparent'; | |
| path.el.style.stroke = stroke_color; | |
| }, | |
| stroke_width: function (path, stroke_width) { | |
| path.stroke_width = stroke_width || 0; |
| { | |
| "toc": true, | |
| "merchant": { | |
| "confirmation_url": "/confirm", | |
| "cancel_url": "/demo-cancel.html", | |
| "ko_url": "/demo-cancel.html", | |
| "success_url": "/demo-success.html", | |
| "force_document_id_manual_upload": true | |
| }, | |
| "customer": { |
| { | |
| "toc": true, | |
| "merchant": { | |
| "cancel_url": "/demo-cancel.html", | |
| "success_url": "/demo-success.html" | |
| }, | |
| "customer": { | |
| "id": "140", | |
| "email": "dev@aplazame.com", | |
| "address": { |
| function Father(first_name) { | |
| this.first_name = name; | |
| } | |
| var John = new Father('John'); | |
| function Son() { | |
| Father.apply(this, arguments); | |
| } |