Skip to content

Instantly share code, notes, and snippets.

View darlanZero's full-sized avatar
:atom:
Focusing

darlanZero

:atom:
Focusing
View GitHub Profile
@falvojr
falvojr / application.properties
Last active January 4, 2023 00:30
Snippets de Código Utilizados na Live "DIO Fullstack Labs - Dia 1": https://youtu.be/Ity0Aa_ytPM
server.port=8080
# https://www.baeldung.com/spring-boot-h2-database#database-configuration
spring.datasource.url=jdbc:h2:mem:dio-game-awards
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=password
# https://www.baeldung.com/spring-boot-h2-database#h2-console
spring.h2.console.enabled=true
@darlanZero
darlanZero / IMC-calculator.py
Last active June 9, 2022 02:15
IMC calculator in Python, made in pt-br(language).
input('Quer calcular seu peso? Venha conosco.')
peso = float(input('digite seu peso: '))
altura = float(input('Digite sua altura: '))
imc = peso /(altura * altura)
print(f'seu IMC é igual a {imc}')
if 26 >= int(imc) >= 16:
print('Parabens!')
print('você está dentro da faixa ideal!')
else:
print('Você tem que cuidar mais da sua saúde!')
@sibelius
sibelius / fullstack_mentoring.txt
Last active September 14, 2022 13:43
fullstack mentorship start
tell me about yourself
send me your GitHub
send me your LinkedIn
what are your short-term goals?
what are your long-term goals?
what are you right now? only backend, only frontend, fullstack?
what stack do you use today?
what stack do you wanna learn?
what is your current company (if any)? do you have space to grow there?
how can I help you?