Skip to content

Instantly share code, notes, and snippets.

View lucasrmagalhaes's full-sized avatar
🎯
Focusing

Lucas Magalhães lucasrmagalhaes

🎯
Focusing
View GitHub Profile
@lucasrmagalhaes
lucasrmagalhaes / espacamento.html
Last active March 15, 2022 14:35
HTML - Códigos
<!DOCTYPE html>
<!-- Adicionar Espaçamentos -->
<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">
@lucasrmagalhaes
lucasrmagalhaes / dataAtual.js
Last active March 24, 2022 20:34
JavaScript - Códigos
/** Gera a Data Atual */
let data, dia, mes, ano, dataAtual;
data = new Date();
dia = String(data.getDate()).padStart(2, '0');
mes = String(data.getMonth() + 1).padStart(2, '0');
ano = data.getFullYear();
@lucasrmagalhaes
lucasrmagalhaes / php.ini
Last active March 18, 2022 00:33
PHP - Códigos
<?php
# Definir tamanho dos uploads
upload_max_filesize
# Memória de Carregamento de Tabelas
memory_limit
# Desativar avisos
error_reporting = E_ALL & ~E_NOTICE & ~E_WARNING & ~E_DEPRECATED
?>
/** Não mostra a arrow para carregar as options */
select[readonly] {
-webkit-appearance: none;
-moz-appearance: none;
text-indent: 1px;
text-overflow: '';
}