Skip to content

Instantly share code, notes, and snippets.

View eduardoleal's full-sized avatar
🌍

Eduardo Leal eduardoleal

🌍
  • Appnovation
  • São Paulo, Brasil
View GitHub Profile
@eduardoleal
eduardoleal / veek-frontend-test.md
Last active February 18, 2021 15:21
Veek Front-end Test

Instruções

  • Criar um projeto e implementar um formulário de busca do Google.

  • Preferencialmente utilizar: React, Redux, NextJs.

  • A cada pesquisa o valor da pesquisado deve ser persistido no store do Redux, em um array, com o histórico de pesquisas feitas. O array deve ser ordenado de forma decrescente de acordo com a data de inserção.

ex:

@eduardoleal
eduardoleal / machine.js
Last active February 9, 2021 18:58
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
@eduardoleal
eduardoleal / veek-backend-test-instructions.md
Last active November 8, 2021 19:29
Veek - Back-end - Test Instructions
CREATE DATABASE api;

CREATE TABLE user (
	id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
	name VARCHAR(30) NOT NULL,
	email VARCHAR(50),
	created DATETIME DEFAULT CURRENT_TIMESTAMP
)
@eduardoleal
eduardoleal / NERDTree.mkd
Created June 13, 2018 14:37 — forked from m3nd3s/NERDTree.mkd
My Vim Cheat Sheet

NERDTree

o.......Open files, directories and bookmarks....................|NERDTree-o|
go......Open selected file, but leave cursor in the NERDTree.....|NERDTree-go|
t.......Open selected node/bookmark in a new tab.................|NERDTree-t|
T.......Same as 't' but keep the focus on the current tab........|NERDTree-T|
i.......Open selected file in a split window.....................|NERDTree-i|
gi......Same as i, but leave the cursor on the NERDTree..........|NERDTree-gi|
s.......Open selected file in a new vsplit.......................|NERDTree-s|
gs......Same as s, but leave the cursor on the NERDTree..........|NERDTree-gs|

O.......Recursively open the selected directory..................|NERDTree-O|