- Nilaus Base in a book: https://nilaus.atlassian.net/wiki/spaces/PM/pages/2506129413/Factorio+S51+-+Base-In-A-Book
- Robo-rush jump start base: https://gist.github.com/cellularmitosis/b692424f70d845178c7d39a7790a85ea
- Robo-rush jump start base (with mall): https://www.reddit.com/r/factorio/comments/u5b5en/my_roborush_jump_base_and_mall/
- Robo shop: https://www.reddit.com/r/factorio/comments/wjdtfu/my_extended_version_of_nilaus_robot_rush/
steven-tk
's moduler mall: https://github.com/steven-tk/factorio-blueprints/tree/main/Modular%20Mall%203.x- Lossless Nucler Power in 2.0: https://factorioprints.com/view/-OCW71Di3RZj1-SoncP8
import * as React from 'react' | |
import { createPortal } from 'react-dom' | |
type FrameProps = React.IframeHTMLAttributes<HTMLIFrameElement> & { | |
head?: React.ComponentType<any> | |
children?: React.ReactNode | |
} | |
const Frame = React.memo(({head, children, ...iframeProps}: FrameProps)=> { | |
const node = React.useRef<HTMLIFrameElement>() | |
const [doc, setDoc] = React.useState<Document>() |
Executing instructions from https://github.com/jacobalberty/unifi-docker/tree/2cb3b97bed46cedab278f7c2d99fee8de3fd080d#setting-up-running-stopping-upgrading, | |
with São Paulo's timezone: | |
docker run -d --init \ | |
--restart=unless-stopped \ | |
-p 8080:8080 -p 8443:8443 -p 3478:3478/udp \ | |
-e TZ='America/Sao Paulo' \ | |
-v ~/unifi:/unifi \ | |
--user unifi \ | |
--name unifi \ |
-
Filelight - application to visualize the disk usage on your computer (https://apps.kde.org/filelight/)
-
Flameshot - Powerful yet simple to use screenshot software (https://github.com/flameshot-org/flameshot)
-
Joplin - open source note-taking app (https://joplinapp.org/)
-
ShareX - Screen capture, file sharing and productivity tool (https://github.com/ShareX/ShareX)
This is a quick guide on how to setup dm_crypt under WSL2 for working with encrypted volumes. I use an encrypted volume to store things like password recovery codes and 2nd factor backup codes etc. I recently switched over to using WSL2 and wanted to figure out how to enable this functionality there. This is the distilled howto for getting it to work.
First thing you have to do is create a custom WSL2 kernel. Inside your already installed and running WSL2 (ubuntu) installation:
- Install some required packages.
/* ==UserStyle== | |
@name 9/30/2022, 3:33:22 PM | |
@namespace github.com/openstyles/stylus | |
@version 0.0.1 | |
@description Margin-top on chess.com board | |
@author github.com/tiagoamaro | |
==/UserStyle== */ | |
@-moz-document domain("chess.com") { | |
#board-layout-main { |
Glossário:
- Git vs GitHub
- Repositório
- Licensa de software (MIT, GNU, etc.)
- Terminologia git:
- Commit
{ | |
"contatos": [ | |
{ | |
"id": 1, | |
"nome": "John Doe", | |
"email": "[email protected]", | |
"telefone": "1111-1111" | |
}, | |
{ | |
"id": 2, |
--DDL - Criando tabelas | |
CREATE TABLE IF NOT EXISTS cliente ( | |
id INTEGER PRIMARY KEY AUTOINCREMENT, | |
nome TEXT NOT NULL, | |
cpf TEXT NOT NULL UNIQUE, | |
ativo BOOLEAN DEFAULT TRUE, | |
data_criacao DATETIME NOT NULL DEFAULT (datetime('now','localtime')) | |
); | |
CREATE TABLE IF NOT EXISTS conta ( |
// Entrada do exercício, lista de aulas | |
let class1 = ['yasmin', 'isadora', 'benedita', 'brenda', 'luiza', 'fatima', 'caio', 'teresinha', 'hugo', 'zeca', 'catarina', 'emanuel', 'marcelo', 'claudio', 'marina', 'isabela', 'anthony', 'rebeca', 'filipe', 'laís', 'vinicius', 'helena', 'elisa', 'rodrigo', 'geraldo', 'yuri', 'marcio'] | |
let class2 = ['benedita', 'elisa', 'emanuel', 'rodrigo', 'filipe', 'marcio', 'teresinha', 'laís', 'vinicius', 'marina', 'catarina', 'luiza', 'marcelo', 'rebeca', 'hugo', 'geraldo', 'zeca', 'caio', 'anthony', 'yasmin', 'claudio'] | |
let class3 = ['isadora', 'isabela', 'laís', 'claudio', 'catarina', 'zeca', 'teresinha', 'emanuel', 'marcio', 'fatima', 'rodrigo', 'luiza', 'brenda', 'marina', 'marcelo', 'benedita', 'rebeca', 'filipe', 'helena', 'elisa', 'hugo', 'geraldo'] | |
// => Parte 1: ordenar os nomes das aulas de forma decrescente (ordem alfabética) | |
// Quicksort que ordena invertido |