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
| ### adb libraries missing in Ubuntu | |
| * apt-get install lib32ncurses5 lib32stdc++6 | |
| ### Installing mercurial | |
| sudo apt-get install python-setuptools python-dev build-essential | |
| sudo easy_install -U mercurial | |
| * https://developer.mozilla.org/en/docs/Installing_Mercurial |
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
| { | |
| "@context": "https://w3id.org/payswarm/v1", | |
| "__v": 1, | |
| "_id": "524891411518809248000001", | |
| "assetContent": "http://12e29bb4.ngrok.com/assets/asset/1416b776835/content", | |
| "assetProvider": "https://dev.payswarm.com/i/webpay", | |
| "id": "http://12e29bb4.ngrok.com/assets/asset/1416b776835", | |
| "listingId": "1416b776835", | |
| "signature": { | |
| "type": "GraphSignature2012", |
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
| Error making purchase [Error: [payswarm.postJsonLd] Invalid response from "https://dev.payswarm.com/transactions"; malformed JSON - Error: no receipt received: {}] |
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
| payswarm.purchase - POSTing purchase request to: "https://dev.payswarm.com/transactions" | |
| payswarm.purchase - Purchase Request: { | |
| "@context": "https://w3id.org/payswarm/v1", | |
| "type": "PurchaseRequest", | |
| "identity": "https://dev.payswarm.com/i/piatra", | |
| "listing": "https://webpayments.fwd.wf/listings/listing/14058676df0", | |
| "listingHash": "urn:sha256:2c61fd8f5700c650014fe3b33b0ffce454238b329b6829152471a63e6fcef8ba", | |
| "signature": { | |
| "type": "GraphSignature2012", | |
| "creator": "https://dev.payswarm.com/i/webpay/keys/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
| { '@context': 'https://w3id.org/payswarm/v1', | |
| type: 'Receipt', | |
| preferences: [ 'PreAuthorization' ], | |
| contract: | |
| { id: 'https://dev.payswarm.com/transactions/1.3.126.3f', | |
| type: [ 'Transaction', 'Contract' ], | |
| vendor: 'https://dev.payswarm.com/i/webpay', | |
| asset: 'https://webpayments.fwd.wf/assets/asset/140408c59da', | |
| assetAcquirer: 'https://dev.payswarm.com/i/piatra', | |
| assetProvider: 'https://dev.payswarm.com/i/webpay', |
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
| Using worker: worker-linux-5-1.bb.travis-ci.org:travis-linux-1 | |
| git.1 | |
| $ git clone --depth=50 --branch=master git://github.com/topcoat/button-base.git topcoat/button-base | |
| Cloning into 'topcoat/button-base'... | |
| remote: Counting objects: 195, done. | |
| remote: Compressing objects: 100% (106/106), done. | |
| remote: Total 195 (delta 90), reused 169 (delta 69) | |
| Receiving objects: 100% (195/195), 28.95 KiB | 0 bytes/s, done. | |
| Resolving deltas: 100% (90/90), done. | |
| $ cd topcoat/button-base |
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
| { | |
| "assetId": "51e5bbb32accfe6525000002", | |
| "@context": "https://w3id.org/payswarm/v1", | |
| "id": "http://listings.dev.payswarm.com/mozhacks/html5-me-song#listing", | |
| "userId": "51cb00e7b544338396000001", | |
| "vendor": "https://dev.payswarm.com/i/the-webdevs", | |
| "asset": "http://listings.dev.payswarm.com/mozhacks/demo#asset", | |
| "assetHash": "urn:sha256:04a349226b8aa3342d1f793572e3a3049c539144d1762547862f92b44c084af9", | |
| "license": "https://w3id.org/payswarm/licenses/personal-use", | |
| "licenseHash": "urn:sha256:73ebeac3656bf37419a02a9d5041226dcc42722d5256895d324519a7b6d7d690", |
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
| { name: 'bower', | |
| description: 'The browser package manager.', | |
| 'dist-tags': { latest: '0.10.0' }, | |
| versions: | |
| [ '0.1.0', | |
| '0.1.2', | |
| '0.1.3', | |
| '0.2.0', | |
| '0.3.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
| function foo () { | |
| bar = 1; | |
| } | |
| if (bar) { | |
| console.log('bar'); | |
| } else { // actually throws an error | |
| console.log('no bar'); | |
| } |