Skip to content

Instantly share code, notes, and snippets.

View HakaCode's full-sized avatar
📚
Learning Front-end / UI - UX Design.

William Constantinov HakaCode

📚
Learning Front-end / UI - UX Design.
View GitHub Profile
@HakaCode
HakaCode / meta-tags.md
Created July 8, 2019 05:50 — forked from lancejpollard/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@HakaCode
HakaCode / markdown-text-101.md
Created September 13, 2019 04:11 — forked from almeidx/markdown-text-101.md
A guide to Markdown on Discord.

Markdown Text 101

Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...

Sweet Styles

Italics *italics* or _italics_

Underline italics __*underline italics*__

@HakaCode
HakaCode / gist:865c0474fb3b6d6568ecae022d49cd3f
Created November 14, 2019 20:57 — 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:
<!DOCTYPE html>
<html lang="pt-br">
<head>
<!--
- a tag keywords não é mais utilizada
- Colocar as folhas de estilos na parte superior do head, fazem com que o estilo tenha prioridade quando um usuário for acessar o seu site
-->
<meta charset="UTF-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
@HakaCode
HakaCode / GitCommitEmoji.md
Created July 8, 2020 22:04 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji
@HakaCode
HakaCode / README-Template.md
Created July 25, 2020 23:20 — forked from atomize/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@HakaCode
HakaCode / README-Template.md
Created July 29, 2020 23:48 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@HakaCode
HakaCode / git-update-fork.sh
Created August 2, 2020 19:03 — forked from rdeavila/git-update-fork.sh
Git: como atualizar um fork com as mudanças do original?
#!/bin/bash
# Adicione um novo remote; pode chamá-lo de "upstream":
git remote add upstream https://github.com/usuario/projeto.git
# Obtenha todos os branches deste novo remote,
# como o upstream/master por exemplo:
git fetch upstream