Skip to main content

Posts

Showing posts from 2016

FileMaker Cloud Hourly Pricing

Hourly FileMaker Cloud is here - how much does it cost? When is it cheaper to switch to annual? Here are some samples - all prices in USD, all prices annual prepaid. As of today: 1. 5 users $888 t2.medium $302 $1190/yr or $0.136/hr 2. 5 users $0.99/hr t2.medium $0.052/hr $1.042/hr $1190 buys 1142 hours which is 47 days Here's the Excel Model - click here Sources: https://aws.amazon.com/ec2/pricing/ https://aws.amazon.com/marketplace/seller-profile?id=b4bbba1b-00ee-4d55-9f88-1e1b77852673

FileMaker Cloud Annual Sample Pricing

Now FileMaker Cloud is here - how much does it cost for 1 year? Here are some samples - all prices in USD, all prices annual prepaid. As of today: 1. 5 users $888 t2.medium $302 $1190/yr or $238/user/yr 2. 10 users $1428 t2.medium $302 $1730/yr or $173/user/yr 3. 25 users $2848 c4.xlarge $1151 $4009/yr or $160/user/yr 4. 100 users $8478 c4.2xlarge $2303 $10781/yr or $108/user/yr Sources: https://aws.amazon.com/ec2/pricing/ https://aws.amazon.com/marketplace/seller-profile?id=b4bbba1b-00ee-4d55-9f88-1e1b77852673

Twilio / Plivo Postman Chrome Extension

I followed instructions on site http://stackoverflow.com/questions/32078510/postman-twilio-rest-api#new-answer Couldn't get Postman to POST to Twilio . I always got error:     {       "code": 21603,       "message": "A 'From' phone number is required.",       "more_info": "https://www.twilio.com/docs/errors/21603",       "status": 400     } I all had to do was change Body > form-data to Body > x-www-form-urlencoded Problem was Postman encodes + to %2B which breaks the POST Couldn't get Postman to POST to Plivo - a similar variation on from missing. All I had to do was changed Body from x-www-form-urlencoded to Body > Raw > JSON (application/json) {"src": "+17787380898","dst": "+16047202643", "text": "Hello"} Postman - https://chrome.google.com/webstore/detail/postman/fhbjgbiflinjbdggehcddcbncdddomop?h