Skip to content

Instantly share code, notes, and snippets.

View natalia-fs's full-sized avatar
💭
Coding

Natália F. Dev natalia-fs

💭
Coding
View GitHub Profile
@sergiolopes
sergiolopes / gpt.js
Last active July 1, 2023 14:36
Use GPT no Google Spreadcheets com essa função App Script
const SECRET_KEY = "YOUR API KEY";
const MAX_TOKENS = 3000;
const TEMPERATURE = 0.9;
function EMAILALUNO(aluno, nota) {
const url = "https://api.openai.com/v1/chat/completions";
const payload = {
model: 'gpt-3.5-turbo',
messages: [
{ role: "system", content: "Crie um parágrafo de incentivo para um aluno que recebeu uma nota na prova. Vou passar o nome do aluno e a nota." },
@Thiago-spart
Thiago-spart / style.css
Last active February 12, 2022 20:09
CSS Reset
*, *::before, *::after {
box-sizing: border-box;
}
* {
padding: 0;
margin: 0;
line-height: calc(1em + 0.5rem);
}