- Conhecimentos avançados em JavaScript
- Conhecimentos básicos em frameworks como React, Angular ou Vue
- Conhecimento prático em HTML5 e CSS3 Responsivo
- Conhecimentos em Git (branches, Pull Requests)
- Experiência de trabalho com APIs, ou integrar uma API de terceiros
- Conhecer pré-processadores CSS como Less, Sass e Stylus;
This file contains hidden or 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
| package ecommerce | |
| import ( | |
| "strconv" | |
| ) | |
| type order struct { | |
| pid productID | |
| cid customerID | |
| } |
This file contains hidden or 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
| package ecommerce | |
| type order struct { | |
| pid int64 | |
| cid int64 | |
| } | |
| func CreateOrder(pid int64, cid int64) order { | |
| return order{ | |
| pid: pid, cid: cid, |
This file contains hidden or 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
| func (l *loginService) Login(userName, password string) { | |
| if l.userRepository.IsValid(userName, password) { | |
| redirect("homepage") | |
| return | |
| } | |
| addFlash("error", "Bad credentials") | |
| redirect("login") | |
| } |
This file contains hidden or 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
| package login | |
| import ( | |
| "github.com/user/project/user/repository" | |
| ) | |
| type loginService struct { | |
| userRepository *repository.UserRepository | |
| } |
This file contains hidden or 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
| package chess | |
| import "bytes" | |
| type board struct { | |
| data [][]string | |
| } | |
| func NewBoard(data [][]string) *board { | |
| return &board{data: data} |
This file contains hidden or 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
| package chess | |
| import "bytes" | |
| type board struct { | |
| data [][]string | |
| } | |
| func NewBoard(data [][]string) *board { | |
| return &board{data: data} |
This file contains hidden or 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
| 16:48:26 in ~/codenation/java-6 ⇣76% ➜ codenation test -c java-6 | |
| Versão: 1.0.8 | |
| Usando arquivo de configuração: /Users/eminetto/.codenation.yml | |
| Starting a Gradle Daemon (subsequent builds will be faster) | |
| > Task :compileJava | |
| > Task :processResources NO-SOURCE | |
| > Task :classes | |
| > Task :compileTestJava FAILED |
This file contains hidden or 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
| root@759cc81a91f0:~ supervisorctl status | |
| api RUNNING pid 3857, uptime 0:00:22 |