This file contains hidden or 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
/* ======================================= */ | |
/* ETAPA 1: Variáveis Iniciais (O Pedido) */ | |
/* ======================================= */ | |
// 1. Constantes de Preço do Menu | |
const precoHamburguer = 15.00; | |
const precoBatata = 8.00; | |
const precoRefrigerante = 6.00; | |
// 2. Variáveis de Pedido (Exemplo de pedido) [cite: 15] |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Byte Burguer</title> | |
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script> | |
</head> | |
<body class="h-screen w-full flex flex-col justify-between"> | |
<div class="mx-auto"> | |
<header></header> |
This file contains hidden or 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
{ | |
"preset": "psr12", | |
"rules": { | |
"group_import": true, | |
"single_import_per_statement": false, | |
"no_unused_imports": true, | |
"array_indentation": true, | |
"array_syntax": { | |
"syntax": "short" | |
}, |
This file contains hidden or 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
#!/usr/bin/env bash | |
stty sane | |
trap error_handling 1 | |
nocolor='\033[0m' | |
green='\033[0;32m' | |
red='\033[0;31m' | |
cyan='\033[0;36m' | |
error='\033[1;31m' |
This file contains hidden or 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
Auto Rename Tag - Jun Han | |
Better Comments - Aeron Bond | |
Bookmarks - Alessadro Fragnani | |
Composer - Ioannis Kappas | |
Dracula Official - Dracula Theme | |
Editor Config for VS Code - EditorConfig | |
ENV - Jakka Prihatna | |
ESLint - Microsoft | |
Git Flow - PsykoSoldi3r | |
Git History - Don Jayamanne |
This file contains hidden or 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
#!/bin/bash | |
# Title | |
echo "" | |
echo "╭━━╮╱╱╱╱╱╭╮╱╱╱╭╮╱╱╱╱╱╭╮╱╱╱╱╱╱╱╭╮╱╱╱╱╭━╮╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭╮" | |
echo "╰┫┣╯╱╱╱╱╭╯╰╮╱╱┃┃╱╱╱╱╱┃┃╱╱╱╱╱╱╱┃┃╱╱╱╱┃╭╯╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭╯╰╮" | |
echo "╱┃┃╭━╮╭━┻╮╭╋━━┫┃╭━━┳━╯┣━━┳━╮╭━╯┣━━╮╭╯╰┳━━┳━┳━┳━━┳╮╭┳━━┳━╋╮╭╋━━┳━━╮" | |
echo "╱┃┃┃╭╮┫━━┫┃┃╭╮┃┃┃╭╮┃╭╮┃╭╮┃╭╯┃╭╮┃┃━┫╰╮╭┫┃━┫╭┫╭┫╭╮┃╰╯┃┃━┫╭╮┫┃┃╭╮┃━━┫" | |
echo "╭┫┣┫┃┃┣━━┃╰┫╭╮┃╰┫╭╮┃╰╯┃╰╯┃┃╱┃╰╯┃┃━┫╱┃┃┃┃━┫┃┃┃┃╭╮┃┃┃┃┃━┫┃┃┃╰┫╭╮┣━━┃" |
This file contains hidden or 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
server { | |
listen 80; | |
listen [::]:80; | |
# For https | |
#listen 443 ssl; | |
#listen [::]:443 ssl ipv6only=on; | |
#ssl_certificate /etc/nginx/ssl/default.crt; | |
#ssl_certificate_key /etc/nginx/ssl/default.key; |