Skip to content

Instantly share code, notes, and snippets.

{
"name": "CocoNFT",
"description": "The easiest way to NFT. Convert your Instagram posts into shoppable NFTs for free — get started in 3 min or less.",
"image": "https://gateway.coconft.com/ipfs/QmTqpnMo9PrHq58yf8hFYRUxnJM7ChCU8wv2hfAKhskNeU",
"external_link": "https://coconft.com",
"seller_fee_basis_points": 250,
"fee_recipient": "0x915FD7751dBbD3d4E8b359D5b99486941636c12f"
}
@mynamebrody
mynamebrody / dominos-lambda-script.js
Created November 9, 2015 03:13
The AWS Lambda Function to order pizza via Dominos
var pizzapi = require('dominos');
// Setup your Default Store
// 6371 = Lafayette, CO 80026
// Run `node findStore.js` and enter Zip Code
var myStore = new pizzapi.Store(
{
ID: '6371'
}
);
@mynamebrody
mynamebrody / drizly-lambda-script.js
Last active October 11, 2016 09:18
The AWS Lambda Function to order alcohol via Drizly
var https = require('https');
var CONFIG = {
base_url: 'sandbox.drizly.com',
partner_token: 'API_TOKEN',
token: 'USER_TOKEN',
delivery_address_id: 654321,
saved_credit_card_id: 123456,
latitude: 40.0155,
longitude: -105.284