- Problemas de modar uma aplicação Front-end hoje em dia
- SPAs - seus paranauês
- Client vs Server
- Server side rendering
- Frameworks com suporte
- Exemplos
- Com vanilla.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "expo": { | |
| "name": "vystoria-app", | |
| "description": "This project is really great.", | |
| "slug": "vystoria-app", | |
| "privacy": "public", | |
| "sdkVersion": "24.0.0", | |
| "platforms": ["ios", "android"], | |
| "version": "1.0.0", | |
| "orientation": "portrait", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://idea.imsxm.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Example shown on this video | |
| # https://www.youtube.com/watch?v=GPz49npOKzQ | |
| # that I re-written in python | |
| # | |
| # Python 3 is required | |
| import threading | |
| import time |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "users": [ | |
| { | |
| "id": 0, | |
| "permission": "admin", | |
| "email": "admin@admin.com", | |
| "password": "123" | |
| }, | |
| { | |
| "id": 0, |
gsettings set org.gnome.desktop.wm.preferences button-layout 'close,minimize,maximize:'
- GTK+: Xenlism Minimalism
- Icons: Elementary
- Cursor: DMz
-
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
-
Enter for all the questions
-
eval "$(ssh-agent -s)"
-
ssh-add ~/.ssh/id_rsa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict' | |
| const fs = require('fs') | |
| let c = 0 | |
| // Folder to inspect | |
| // ================= | |
| const PATH = 'artes' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Database { | |
| private $pdo; | |
| private $rowsNumber; | |
| private $result; | |
| public function __construct($host, $dbname, $user, $password) { |