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
const User = require(“./models/user”); | |
const user = new User({ | |
name: "Marcelo" | |
}) | |
await user.save() | |
const user = await User.create({ | |
name: "Marcelo" |
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
Vaga: Desenvolvedor Delphi C# | |
Atividades: Participará da análise de requisitos; Desenvolverá software para as soluções | |
propostas utilizando algorítimos e padrões de mercado; Irá atuar na melhoria contínua dos | |
produtos de software e seguir processos de desenvolvimento. | |
Requisitos Técnicos: | |
- Experiência com Delphi (dois anos ou mais) | |
- Experiência com C# (dois anos ou mais) | |
- Boas práticas de desenvolvimento: clean mode | |
- Testes automatizados e integração contínua |
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
Vaga: FRONT END ANGULAR | |
Atividades: Participará da análise de requisitos e de propostas de solução de | |
desenvolvimento de software. Desenvolverá softwares para as soluções propostas | |
utilizando algorítimos e padrões de mercado. Atuará na melhoria contínua dos produtos de | |
software entregues e seguir corretamente os processos de desenvolvimento. | |
Requisitos Técnicos: | |
- Desenvolvimento com Angular 2/4/5 ou superior (experiência de pelo menos 1 ano) | |
- Domínio das tecnologias web: Html5, CSS3, (SASS/Less) e Javascript avançado. | |
--------------------------------------------------------------- |
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
import React, { Component } from "react"; | |
import { | |
BrowserRouter as Router, | |
Switch, | |
Route, | |
Redirect | |
} from "react-router-dom"; | |
exports default class App extends Component { | |
render() { |
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
import React from 'react' | |
import PropTypes from 'prop-types' | |
import './ListRepos.css' | |
const ListRepos = ({ repos }) => { | |
return ( | |
<div> | |
{repos.map(repo => ( | |
<div key={repo.id}> | |
<div className="title">{repo.full_name}</div> | |
<div className="sub-title">{repo.language}</div> |
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
import React, { Component } from 'react' | |
import ListRepos from './ListRepos' | |
class ListReposContainer extends Component { | |
state = { | |
repos: [] | |
} | |
componentDidMount() { | |
fetch('https://api.github.com/users/udacity/repos') | |
.then(results => { | |
return results.json() |
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
import React, { Component } from 'react' | |
import './ListRepos.css' | |
class ListRepos extends Component { | |
state = { | |
repos: [] | |
} | |
componentDidMount() { | |
fetch('https://api.github.com/users/udacity/repos') | |
.then(results => { |
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
"scripts": { | |
"docz:dev": "docz dev", | |
"docz:build": "docz build" | |
} |
NewerOlder