I hereby claim:
- I am carlossaraiva on github.
- I am carlosedosaraiva (https://keybase.io/carlosedosaraiva) on keybase.
- I have a public key ASAUYos_WM6CMaRUVWMRQjayKuCBmIz-tDPK4zQd5Q3jpQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| const paymentMachine = Machine({ | |
| id: "payment", | |
| initial: "products", | |
| context: { | |
| items: 0, | |
| paymentForm: null, | |
| retries: 0, | |
| }, | |
| states: { | |
| products: { |
| (function () { | |
| function t() { | |
| var a = 0; | |
| try { | |
| a = r.performance.timing.navigationStart + Math.floor(r.performance.now()) | |
| } catch (b) {} | |
| return 0 >= a || isNaN(a) ? (new Date).getTime() : a | |
| } | |
| function B(a, b) { |
| import React from 'react' | |
| import PropTypes from 'prop-types' | |
| import Wrapper from './wrapper' | |
| import { Definition, Translation, Help, Normal } from './intents-templates' | |
| const withIntent = Component => { | |
| const Balon = ({ | |
| intent = 'normal', | |
| title, |
| import React, { Component } from 'react' | |
| import { Root } from "native-base" | |
| import PropTypes from 'prop-types' | |
| import { connect } from 'react-redux' | |
| import { addNavigationHelpers } from 'react-navigation' | |
| import RootNavigator from '@navigators/root-navigator' | |
| class App extends Component { | |
| static navigationOptions = { |
| angular.module('genesys') | |
| .controller('storesCtrl', ['StoresService','$rootScope', '$scope', 'utils', 'config', '$compile', '$sessionStorage', 'uiGmapgoogle-maps', function(StoresService, $rootScope, $scope, $compile, utils, config, $sessionStorage) { | |
| $scope.map = { center: { latitude: 45, longitude: -73 }, zoom: 8 }; | |
| $scope.dataTableOptions = { | |
| serverSide: false, | |
| //createdRow: (row, data, index) => $compile(angular.element(row))($scope), | |
| Private Sub Codigo_Aluno_Enter() | |
| Dim MyRec As DAO.Recordset | |
| Dim myVar | |
| Set db = CurrentDb | |
| Set MyRec = db.OpenRecordset("SELECT * FROM Cadastro Where Codigo_Aluno = " & Chr$(39) & Codigo_Aluno.Text & Chr$(39)) | |
| If MyRec.RecordCount > 0 Then | |
| Label5.Caption = MyRec.Fields("Nome") | |
| CurrentDb.Execute ("INSERT INTO Entrada (Codigo_Aluno) VALUES (" + Codigo_Aluno.Text + ")") | |
| End If |
| function moneyFormatConvert(value: string) { | |
| var money = new RegExp(/^((?:\d{1,3}\,?)+)(\.\d{1,2})/).exec(value); | |
| return money[1].replace(/,/g, ".") + money[2].replace(".", ","); | |
| } |