Skip to content

Instantly share code, notes, and snippets.

View Fabricio-Guima's full-sized avatar
🎯
Focusing

Fabrício Guimarães Fabricio-Guima

🎯
Focusing
View GitHub Profile
@Felipe-Marques
Felipe-Marques / gist:eef9e6995c9f098ff3ed492d1075b024
Created May 22, 2020 20:30 — 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:
@Felipe-Marques
Felipe-Marques / settings.json
Last active November 3, 2021 13:17
Arquivo adicional na configuração do Vs Code usado pelo bootcamp do IGTI
{
"extensions.ignoreRecommendations": true,
"workbench.startupEditor": "newUntitledFile",
"debug.console.fontFamily": "Fira Code Retina",
"editor.fontFamily": " 'Fira Code Retina' , Consolas, 'Courier New', monospace",
"window.zoomLevel": 0,
"editor.fontLigatures": false, //Evita que arrow functions vire setas comuns.
"editor.fontSize": 11,
"editor.lineHeight": 15,
"editor.formatOnSave": true,
@Felipe-Marques
Felipe-Marques / conexao.php
Last active April 16, 2020 21:42
Conexão com Banco de Dados utilizando programação Orientada a Objetos e PDO.
<?
//Conexão com Banco de Dados.
class Conexao{
private $host = 'localhost';
private $dbname = 'db_controle';
private $user = 'root';
private $password = '';
@maiquealmeida
maiquealmeida / README.MD
Last active August 18, 2022 03:41
AdonisJS: How to get separated auth for admin and user models

How to get separated auth for admin and user models

Let's say you have 2 models. App/Models/User and App/Models/Admin Inside your config/auth.js, you can create multiple authenticators for admin and user.

{
  user: {
    serializer: 'lucid',
    model: 'App/Models/User',
 scheme: 'session',
@georgemendonca
georgemendonca / quebra-linha.html
Created November 11, 2010 03:08
Quebra de linha em textos.
<html>
<head>
<title>Quebra de linha.</title>
</head>
<body>
Utilizando a tag <br /> para quebra de linha.
</body>
</html>