Skip to content

Instantly share code, notes, and snippets.

View chapzin's full-sized avatar
🎯
Focusing

Ricardo Augusto Barroso Gomes chapzin

🎯
Focusing
View GitHub Profile
@chapzin
chapzin / desafio.dart
Created February 20, 2021 01:42
Desafio Dart
import 'dart:collection';
main() {
var pessoas = [
'Rodrigo Rahman|35|Masculino',
'Jose|56|Masculino',
'Joaquim|84|Masculino',
'Rodrigo Rahman|35|Masculino',
'Maria|88|Feminino',
'Helena|24|Feminino',
@chapzin
chapzin / serverHapi.js
Created January 14, 2019 03:38
Exemplo de servidor Inicial Hapi.js
const Hapi = require('hapi');
const server = Hapi.server({
port: 3000,
host: 'localhost',
});
server.route({
method: 'GET',
path: '/hello',
import React from 'react'
class AddNewGamer extends React.Component {
state = {
name: '',
sobrenome: '',
}
handleChangeNome = (event) => {
this.setState({