the prefix is control+b, before all commands run it.
- , => rename current session
- c => new window
- n => next window
- p => prevous window
build the spec file
gem build gemname.spec
extract gem files to current path
gem unpack
run on terminal
yarn add @fortawesome/fontawesome-free
import on application.scss
$fa-font-path: '@fortawesome/fontawesome-free/webfonts';
| module.exports = { | |
| config: { | |
| updateChannel: 'stable', | |
| // default font size in pixels for all tabs | |
| fontSize: 10, | |
| // font family with optional fallbacks | |
| fontFamily: '"Fira Code", Menlo, "DejaVu Sans Mono", "Lucida Console", monospace', |
ssh on machine
allow udp to ports 500 and 4500
sudo ufw allow 500/udp
| #!/usr/bin/python3 | |
| import requests | |
| import json | |
| from bs4 import BeautifulSoup | |
| def template_html(): | |
| url = 'https://www.nuuvem.com/catalog/price/promo/sort/bestselling/sort-mode/desc'; | |
| response = requests.get(url); |