https://github.com/benhurott/react-native-masked-text
https://github.com/Microsoft/react-native-code-push#how-does-it-work
| /* eslint-env mocha */ | |
| /* eslint-disable func-names, prefer-arrow-callback */ | |
| import { Meteor } from 'meteor/meteor'; | |
| import { Accounts } from 'meteor/accounts-base'; | |
| import { assert } from 'meteor/practicalmeteor:chai'; | |
| import { resetDatabase } from 'meteor/xolvio:cleaner'; | |
| import { Random } from 'meteor/random'; | |
| import { Factory } from 'meteor/dburles:factory'; | |
| import './methods.js'; // import all the methods that will be tested |
| /* eslint-env mocha */ | |
| /* eslint-disable func-names, prefer-arrow-callback */ | |
| import { Meteor } from 'meteor/meteor'; | |
| import { Accounts } from 'meteor/accounts-base'; | |
| import { assert } from 'meteor/practicalmeteor:chai'; | |
| import { resetDatabase } from 'meteor/xolvio:cleaner'; | |
| import { Random } from 'meteor/random'; | |
| import { Factory } from 'meteor/dburles:factory'; | |
| import './methods.js'; // import all the methods that will be tested |
| /* Método para iniciar sistema e maquininha */ | |
| public async Task IniciarPinPad() | |
| { | |
| string storagePath = "C:\\Storage\\"; | |
| Directory.CreateDirectory(storagePath); | |
| // Pega a porta COM associada a maquininha | |
| while (pinPadComPort == null) | |
| { | |
| await Task.Delay(1000); |
| 'Esse arquivo gera alguns stats dos algoritmos' | |
| import numpy as np | |
| import gym | |
| # from main import random_search | |
| import os | |
| def run_episode(env, params, max_reward): | |
| 'Roda o episodio por no max. 200 timesteps, retornanto o totalReward para esse set de params' | |
| observation = env.reset() | |
| totalreward = 0 |
| //Hello World |