Skip to content

Instantly share code, notes, and snippets.

View lucasKoyama's full-sized avatar
🎯
focado

Lucas Koyama lucasKoyama

🎯
focado
View GitHub Profile
@lucasKoyama
lucasKoyama / instalation-steps.md
Last active April 19, 2025 20:00
Powershell to install a lot of programs for developers in Windows

Automatic instalation

  1. Download the instalation.ps1
  2. Right click on it and run with "Windows PowerShell"

In case the file doesn't get executed

  1. Copy all the instalation.ps1 content
  2. Go to windows search bar (press Windows)
  3. Search and execute a "Windows PowerShell" terminal
  4. Paste the copied scripts from the instalation.ps1 and press enter
@lucasKoyama
lucasKoyama / cheatsheet.md
Last active January 30, 2024 16:13
AWS Gen AI (public beta)

AWS Gen AI

CodeWhisperer

Amazon free AI code assistent, also provide 50 per month code security analysis

Setup CodeWhisperer

  1. Install on VSCode the extension
  2. Connect your local machine with AWS services by logging
  3. Go back to VSCode and try example to check out the AWS CodeWhisperer introduction tutorial
@lucasKoyama
lucasKoyama / quotes.md
Last active July 24, 2024 02:28
leia-me em grandes mudanças

Razão da gist

Para quando acontecer alguma grande mudança na vida, essa gist deve ser relida!

Para quando aumentar as responsabilidades e/ou a liderança, lembre-se:

Trate bem as pessoas. Tenha empatia. Quem maltrata (você, ou outros) são os que mais estão precisando de ajuda. Pessoas de bem com a vida não querem machucar ninguém. Lembre-se, você influencia o mundo onde estão as pessoas que mais ama. (pessoal)

Comunicação: entender e mostrar que entendeu! Ser entendido e garantir-se de que foi entendido! Você nunca "quis dizer", "foi mal-entendido" ou "entendeu errado", te falaram 'A' certifique-se de que entendeu 'A', você falou 'A' certifique-se de que entenderam 'A'! (pessoal)

@lucasKoyama
lucasKoyama / cheatsheet.md
Last active March 8, 2024 23:01
REST API + CRUD + .NET 6 + EF + Authentication + Authorization + Login + External API Requests

Web API => REST API + CRUD + .NET 6 + EF + Authentication + Authorization + Login + External API Requests

The purpose of this gist is to provide a step-by-step guide on how to create a REST API with all CRUD methods using .NET 6 and Entity Framework.

💡 Additionally, you can fork this gist and use the summary checkboxes to mark the steps as finished!

💡 Every Default Method will have a boilerplate code to replace the Entity1/Entity2/Entities names accordintly to your Table or Columns names!

❗ This is a step-by-step Cheat Sheet, so I won't dive deep into explanations of technical terms, just code snippets!❗

😉 But referencial links to public explanations will be provided! 😉

@lucasKoyama
lucasKoyama / cheatsheet.md
Last active August 11, 2025 20:38
Next.js 14 CheatSheet
@lucasKoyama
lucasKoyama / HrContext.jsx
Last active October 17, 2023 15:08
Componente react / next para facilitar a vida de recrutadores ao usar seu portfólio!
import { createContext } from 'react';
const HrContext = createContext();
export default HrContext;
@lucasKoyama
lucasKoyama / motion_utils.md
Created September 25, 2023 13:50 — forked from macodesh/motion_utils.md
Motion Utils

Funções Auxiliares para Animações com Framer Motion

Neste Gist, apresentamos algumas funções auxiliares que podem ser usadas com a biblioteca Framer Motion para criar animações pré-definidas, como fade in e slide.

Você pode importar essas funções em seu projeto Framer Motion e usá-las para criar animações de forma mais fácil e rápida.

Observação: Certifique-se de importar a biblioteca Framer Motion em seu projeto antes de usar essas funções.

export const textVariant = (delay = 0) => {