Skip to content

Instantly share code, notes, and snippets.

View gustavoarmoa's full-sized avatar
💭
Front-End Developer

Gustavo Armoa gustavoarmoa

💭
Front-End Developer
View GitHub Profile
@gustavoarmoa
gustavoarmoa / query.json
Created September 21, 2021 21:16
Query GraphQL Bequest
# Query for professionals or mutation here
query GET_PROFISSIONAIS {
profissionais {
nome_completo,
biografia,
foto_perfil {
url
}
}
}
@gustavoarmoa
gustavoarmoa / django_deploy.md
Created October 20, 2020 17:44 — forked from bradtraversy/django_deploy.md
Django Deployment - Digital Ocean

Django Deployment to Ubuntu 18.04

In this guide I will go through all the steps to create a VPS, secure it and deploy a Django application. This is a summarized document from this digital ocean doc

Any commands with "$" at the beginning run on your local machine and any "#" run when logged into the server

Create A Digital Ocean Droplet

Use this link and get $10 free. Just select the $5 plan unless this a production app.

@gustavoarmoa
gustavoarmoa / django_deploy.md
Created October 20, 2020 17:44 — forked from bradtraversy/django_deploy.md
Django Deployment - Digital Ocean

Django Deployment to Ubuntu 18.04

In this guide I will go through all the steps to create a VPS, secure it and deploy a Django application. This is a summarized document from this digital ocean doc

Any commands with "$" at the beginning run on your local machine and any "#" run when logged into the server

Create A Digital Ocean Droplet

Use this link and get $10 free. Just select the $5 plan unless this a production app.

@gustavoarmoa
gustavoarmoa / index-vendas.html
Created July 27, 2019 17:10
Arquivo para fazer testes de códigos de HTML
<!DOCTYPE html>
<html lang="pt-br>
<head>
<title>Index de vendas</title>
</head>
<body>
<h1> Olá sóu um cabeçalho de testes!</h1>
</body>
</html>
@gustavoarmoa
gustavoarmoa / scss.md
Last active July 27, 2019 17:06 — forked from jareware/SCSS.md
Advanced SCSS, or, 16 cool things you may not have known your stylesheets could do

⇐ back to the gist-blog at jrw.fi

Advanced SCSS

Or, 16 cool things you may not have known your stylesheets could do. I'd rather have kept it to a nice round number like 10, but they just kept coming. Sorry.

I've been using SCSS/SASS for most of my styling work since 2009, and I'm a huge fan of Compass (by the great @chriseppstein). It really helped many of us through the darkest cross-browser crap. Even though browsers are increasingly playing nice with CSS, another problem has become very topical: managing the complexity in stylesheets as our in-browser apps get larger and larger. SCSS is an indispensable tool for dealing with this.

This isn't an introduction to the language by a long shot; many things probably won't make sense unless you have some SCSS under your belt already. That said, if you're not yet comfy with the basics, check out the aweso