- pug
- xsel
- clip
- node
You can install on debian based distros by running sudo apt-get install xsel xclip; sudo npm i pug -g
Select and copy the Pug code, run the script below
function dps | |
docker ps $argv | |
end | |
function dls | |
docker images $argv | |
end | |
function dstop | |
docker stop (docker ps -q) |
[["lucas",303],["gabriel",250],["pedro",240],["silva",229],["oliveira",219],["guilherme",217],["de",215],["santos",201],["joao",198],["julia",163],["bruno",162],["henrique",161],["matheus",159],["ana",153],["vinicius",152],["rafael",147],["leticia",145],["souza",144],["gustavo",144],["felipe",143],["victor",142],["leonardo",135],["gabriela",133],["rodrigues",131],["mariana",113],["pereira",111],["vitor",104],["bruna",103],["ferreira",102],["lima",99],["fernanda",99],["andre",99],["maria",97],["amanda",95],["beatriz",94],["eduardo",94],["martins",91],["paulo",91],["caio",90],["carolina",85],["camila",82],["ribeiro",81],["fernando",80],["alves",79],["luiz",74],["thiago",71],["almeida",69],["carvalho",66],["daniel",66],["rodrigo",65],["lopes",65],["laura",64],["carlos",64],["mateus",63],["natalia",63],["larissa",62],["augusto",60],["fernandes",60],["costa",59],["gomes",59],["goncalves",59],["da",58],["isabela",57],["juliana",56],["luis",55],["caroline",55],["marcos",54],["bianca",54],["jessica",54],["garcia",52] |
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch C++", | |
"type": "cppdbg", | |
"request": "launch", | |
"program": "${workspaceFolder}/${fileBasenameNoExtension}.exe", | |
"args": [], | |
"stopAtEntry": false, |
(http://www.w3.org/Consortium/Legal/2015/copyright-software-and-document). | |
--> | |
<html> | |
<head> | |
<title>Web Share Test</title> | |
<style> | |
.error { | |
color: #d22; | |
} | |
</style> |
#include <iostream> | |
#include <string> | |
class Complex { | |
private: | |
double a, b; | |
public: | |
Complex(){ |
#define HTML "text/html" | |
/* Structure Types */ | |
typedef struct { | |
char nome[1000]; | |
char valor[1000]; | |
} Param; | |
void input(char * name, char * value){ | |
printf("<input name=\"%s\" value=\"%s\" />", name, value); |
#include <stdio.h> | |
#include <string.h> | |
// Constantes pré-compiladas | |
#define NOME_MAX 60 | |
#define NOTAS_MAX 5 | |
#define AMIGOS_MAX 15 | |
// Definindo a estrutura de Aluno |
let elEntrada = document.getElementById('entrada') | |
let elSaida = document.getElementById('container') | |
let elForm = document.getElementById('formulario') | |
const gerarNumeros = (evento) => { | |
evento.preventDefault() | |
let numero = parseInt(elEntrada.value) | |
let saida = "" | |
for(let i = 0; i < numero; i++) | |
saida += Math.round(Math.random() * 100) + "<br>" | |
elSaida.innerHTML = saida |