tips to evolve as a developer
developers get stuck, paralized
https://www.oreilly.com/library/view/apprenticeship-patterns/9780596806842/ch04.html
Make It Stick https://www.amazon.com.br/Make-Stick-Science-Successful-Learning/dp/0674729013
import React, { useRef, useState } from 'react'; | |
import { Typography } from '@material-ui/core'; | |
import TextField from '@material-ui/core/TextField'; | |
import CircularProgress from '@material-ui/core/CircularProgress'; | |
import Autocomplete, { | |
AutocompleteChangeDetails, | |
AutocompleteChangeReason, | |
AutocompleteProps | |
} from '@material-ui/lab/Autocomplete'; |
tips to evolve as a developer
developers get stuck, paralized
https://www.oreilly.com/library/view/apprenticeship-patterns/9780596806842/ch04.html
Make It Stick https://www.amazon.com.br/Make-Stick-Science-Successful-Learning/dp/0674729013
import { RequestParameters } from 'relay-runtime/lib/util/RelayConcreteNode'; | |
import { Variables, Disposable } from 'relay-runtime/lib/util/RelayRuntimeTypes'; | |
import { SubscriptionClient, Observer } from 'subscriptions-transport-ws'; | |
import config from '../config'; | |
import { ExecutionResult } from 'graphql'; | |
import { Observable, SubscribeFunction, Subscribable, GraphQLResponse } from 'relay-runtime'; | |
import { RelayObservable } from 'relay-runtime/lib/network/RelayObservable'; | |
export function getToken(): string { |
<link rel="shortcut icon" width=32px> | |
<canvas style="display: none" id="loader" width="16" height="16"></canvas> | |
<script> | |
class Loader { | |
constructor(link, canvas) { | |
this.link = link; | |
this.canvas = canvas; | |
this.context = canvas.getContext('2d'); | |
this.context.lineWidth = 2; |
you should review every pull request of your team
you should ensure consistency of the code base
you should pair programming with all devs of your team
You first need to undestand the concept of frontend tests.
You should not test the implementation but the behavior
You test like the end user
For instance, imagine a login screen with email and password inputs and a submit button
The test should input the email and the password, then click in the submit button.
Also check Docker Learning Path and Lambda Learning Path
Most job post are about requirements that you should already know.
We think that you should learn a lot when working for a company.
So here is a list of many things that you are going to learn while working for us (and many more):