This file contains 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
// FILENAME: 01-update-maxmind-database.config | |
// LOCATION: <project>/.ebextensions/ | |
// Script to setup geoipupdate (Maxmind) package on AWS ElasticBeanStalk (EBS) | |
// Don't forget to replace tar url by a version of your current architecture (and indeed, folder name) | |
// Replace <ACCOUNT_ID_TO_REPLACE> by your account Id | |
// Replace <LICENSE_KEY_TO_REPLACE> by your key | |
container_commands: |
This file contains 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
{ | |
"messages": [ | |
"Total [249] records found." | |
], | |
"result": [ | |
{ | |
"name": "Afghanistan", | |
"alpha2_code": "AF", | |
"alpha3_code": "AFG" | |
}, |
This file contains 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 System; | |
using Xamarin.Forms; | |
using System.Threading.Tasks; | |
using System.Collections.Generic; | |
using System.Collections.ObjectModel; | |
//using ZXing.Mobile; | |
//using ZXing.Net.Mobile.Forms; | |
//using System.Threading.Tasks; | |
using M2JOB; |