- calculus (learn how to find zero of a function, and what is a gradient)
- unsupervised learning (k-means, and other cluster algorithm)
- supervised learning (linear regression, svn, neural net)
- reinforcement learning (llm)
- learn state of art (convolution network, deep learning, attention)
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
module.exports = { | |
extends: [ | |
], | |
parser: '@typescript-eslint/parser', | |
parserOptions: { | |
ecmaVersion: 10, | |
sourceType: 'module', | |
ecmaFeatures: { | |
modules: true, | |
}, |
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
it('test SSR', async () => { | |
const response = await request(app.callback()).get('/').send(); | |
expect(response.status).toBe(200); | |
const { getByText } = renderHtml(response.text); | |
expect(getByText('my data')).toBeTruthy(); | |
}); |
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 BrowserOnly from '@docusaurus/BrowserOnly'; | |
import { useColorMode } from '@docusaurus/theme-common'; | |
const Embed = (props) => { | |
const { isDarkTheme } = useColorMode(); | |
return ( | |
<BrowserOnly> | |
{() => { |
- Avoid large meetings Large meetings waste valuable time and energy.
- They discourage debate
- People are more guarded than open
- There’s not enough time for everyone to contribute Don’t schedule large meetings unless you’re certain they provide value to everyone.
- Leave a meeting if you’re not contributing If a meeting doesn’t require your:
- Input
Stuck on a Good Salary
You can easily get stuck on a "good" salary.
you feel that you are stuck
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
FROM node:lts-alpine | |
RUN mkdir -p /usr/src/app | |
WORKDIR /usr/src/app | |
COPY yarn.lock /usr/src/app/ | |
COPY package.json /usr/src/app/ | |
RUN yarn install --production --frozen-lockfile |
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
FROM node:lts-slim | |
RUN mkdir -p /usr/src/app | |
WORKDIR /usr/src/app | |
ENV PORT=5001 | |
EXPOSE ${PORT} | |
COPY ./.env.example /usr/src/app/ |
quanto mais voce souber sobre isso mais chances de ser contratado
https://twitter.com/sseraphini/status/1385561029778845698
https://gist.github.com/sibelius/ce9499969cf2a0ccea25291471038bf0