Skip to content

Instantly share code, notes, and snippets.

View uchoamaster's full-sized avatar
🎯
Focusing

UchoaMaster uchoamaster

🎯
Focusing
View GitHub Profile
@uchoamaster
uchoamaster / api.php
Created November 9, 2018 18:10
curso php basico
<?php
include('configuracao.php');
include('db.php');
include('usuarios.php');
include('produtos.php');
function getPagina(){
$url = $_SERVER['REQUEST_URI'];
@uchoamaster
uchoamaster / gist:cfa1b277ced9109bd28dc60b293e9f8b
Created January 25, 2021 13:28 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@uchoamaster
uchoamaster / gist:5d783204a787f1ad814e6af55fce9541
Created January 25, 2021 13:28 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@uchoamaster
uchoamaster / form-validation-073-of-100days100projects.markdown
Created July 22, 2021 12:12
Form Validation - #073 of #100Days100Projects
@uchoamaster
uchoamaster / select-estados-br
Created April 4, 2022 11:54 — forked from cassiocardoso/select-estados-br
Select com uma lista de todos os estados brasileiros.
<select name="estados-brasil">
<option value="AC">Acre</option>
<option value="AL">Alagoas</option>
<option value="AP">Amapá</option>
<option value="AM">Amazonas</option>
<option value="BA">Bahia</option>
<option value="CE">Ceará</option>
<option value="DF">Distrito Federal</option>
<option value="ES">Espírito Santo</option>
<option value="GO">Goiás</option>
@uchoamaster
uchoamaster / whatsapp-web-emoji-keywords.txt
Created May 5, 2022 19:37 — forked from hkan/whatsapp-web-emoji-keywords.txt
Emoji shortcut keywords for Whatsapp Web
0⃣ 0, keycap, zero
1⃣ 1, number, one
🕜 1, 30, clock, time, one, thirty, 1:30, one-thirty
🕐 1, clock, time, one, 00, o’clock, 1:00, one o’clock
2⃣ 2, number, two
🕝 2, 30, clock, time, two, thirty, 2:30, two-thirty
🕑 2, clock, time, two, 00, o’clock, 2:00, two o’clock
3⃣ 3, keycap, three
🕞 3, 30, three, clock, time, thirty, 3:30, three-thirty
🕒 3, three, clock, time, 00, o’clock, 3:00, three o’clock
@uchoamaster
uchoamaster / gist:bb3bfdf04382bb8800c761be2ab3d745
Created October 19, 2023 21:44
Coleção de dados de cidades brasileiras
const colecaoUf = [
{
id: 1,
uf: "AC",
nome: "Acre"
},
{
id: 2,
uf: "AL",
nome: "Alagoas"
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");
*{
margin:0;
padding:0;
box-sizing: border-box;
}
body{
background-image: linear-gradient(rgb(7, 11, 91), rgb(102, 207, 100));
}
@uchoamaster
uchoamaster / login
Last active March 2, 2024 23:40
index.html do projeto do curso de git e github da horadev
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/estilo.css">
<title>Página Inicial</title>
</head>
<body>