This list served quite some people but someone else did a better job since.
Go to https://github.com/umpirsky/country-list for a list in your language and format.
I've also compiled a list of nationalities
| #!/usr/bin/env bash | |
| #################################################################################### | |
| # Adapted from various wait-for-boot scripts found online | |
| # This is the most robust version I could write for MacOS | |
| # MUST have upgraded Bash to run mapfile | |
| # Can adapt the last 2 functions if you want to start an Emulator on CI | |
| # This is part of a script we run locally before starting Appium automation on Android | |
| #################################################################################### |
| name: Detox | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: macOS-latest | |
| timeout-minutes: 15 | |
| env: |
This list served quite some people but someone else did a better job since.
Go to https://github.com/umpirsky/country-list for a list in your language and format.
I've also compiled a list of nationalities
| var debug = process.env.NODE_ENV !== "production"; | |
| var webpack = require('webpack'); | |
| module.exports = { | |
| context: __dirname, | |
| devtool: debug ? "inline-sourcemap" : null, | |
| entry: "./js/scripts.js", | |
| output: { | |
| path: __dirname + "/js", | |
| filename: "scripts.min.js" |