Skip to content

Instantly share code, notes, and snippets.

View natanfeitosa's full-sized avatar

Natanael dos Santos Feitosa natanfeitosa

View GitHub Profile
@natanfeitosa
natanfeitosa / index.html
Last active January 24, 2021 21:09
Gist de exemplo usado no post de como criar blog em Django
<!doctype html>
<html lang="pt-BR">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
@natanfeitosa
natanfeitosa / keyword var.js
Created October 16, 2021 15:47
Arquivo gist para exemplificar e explicar a diferença entre var, const e let
// seguindo o conceito de funções anônimas, atribuimos uma função à variável test
var test = function() {
// chamamos uma várivel que à primeira vista não foi declarada ainda
console.log(stringTest) // undefined
if(true) {
// no escopo de bloco definimos então a variável e a chamamos
var stringTest = 'hello'
console.log(stringTest) // hello
}
@natanfeitosa
natanfeitosa / keyword let.js
Last active October 16, 2021 20:58
Arquivo gist para exemplificar e explicar a diferença entre var, const e let
let test = function () {
console.log(stringTest)
if (true) {
let stringTest = 'hello'
console.log(stringTest)
}
@natanfeitosa
natanfeitosa / keyword const.js
Last active October 16, 2021 20:58
Arquivo gist para exemplificar e explicar a diferença entre var, const e let
const test = function () {
if (true) {
const stringTest = 'hello'
console.log(stringTest)
}
console.log(stringTest)
}
test()
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="utf-8">
<title>Hello World em Vue3</title>
<script type="text/javascript" src="https://unpkg.com/vue@3"></script>
</head>
<body>
<div id="app">
<h1>{{ message }}</h1>
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="utf-8">
<title>Hello World em Vue3</title>
<script type="text/javascript" src="https://unpkg.com/vue@3"></script>
</head>
<body>
<div id="app">
<input type="text" v-model="nome" >
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="utf-8">
<title>Hello World em Vue3</title>
<script type="text/javascript" src="https://unpkg.com/vue@3"></script>
</head>
<body>
<div id="app"></div>
<script type="text/javascript">
from flask import Flask, request, make_response
app = Flask(__name__)
@app.route('/')
def visit_counter():
visits = int(getattr(request.cookies, 'visits', 0)) + 1
msg = f'''
<h1>

Qualquer texto que não tiver uma das seguintes regras e tiver uma linha em branco no final, no início ou ambos, será um parágrafo assim

Este é um Heading h1

Este é um Heading h2

Este é um Heading h6

Enfase

Texto em itálico
Texto também em itálico

document.addEventListener('click', e => {
if(e.target.tagName.toUpperCase() == 'A') {
e.stopPropagation()
e.preventDefault()
var data_container=jquery(e.target).attr('data-container');
if(data_container){
var title=jquery(e.target).attr('title');
var url=jquery(e.target).attr('href');
jquery('body').html('');
path=url.split('/')[1];