sudo apt install ffmpeg
cd <folder with .rmvb files>
python3 convert.py
version: '3' | |
services: | |
elasticsearch: | |
image: elasticsearch:7.12.1 | |
environment: | |
- discovery.type=single-node | |
ports: | |
- "9200:9200" | |
- "9300:9300" |
#!/bin/bash | |
######################################## | |
##### USE THIS WITH AMAZON LINUX 2 ##### | |
######################################## | |
# get admin privileges | |
sudo su | |
# install httpd (Linux 2 version) |
mklink /d
IDENTIFICATION DIVISION. | |
PROGRAM-ID. CRUD. | |
ENVIRONMENT DIVISION. | |
INPUT-OUTPUT SECTION. | |
FILE-CONTROL. | |
SELECT ARQUIVO-FUNCIONARIO ASSIGN TO | |
"ARQUIVO-FUNCIONARIO-IDX.DAT" ORGANISATION IS INDEXED | |
RECORD KEY IS FUNCIONARIO-CODIGO ACCESS MODE IS DYNAMIC. | |
DATA DIVISION. | |
FILE SECTION. |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
Usar o site https://md2pdf.netlify.com/ para gerar o pdf
from curses import initscr, wrapper, noecho, cbreak, endwin | |
from random import randint | |
def boas_vindas(stdscr): | |
stdscr.addstr(1, 1, 'Bem-vindo ao Jogo da Velha.') | |
stdscr.addstr(2, 1, 'Pressione q para sair ou h para obter ajuda.') | |
stdscr.addstr(16, 1, 'Desenvolvido por: Horácio Dias.') | |
stdscr.addstr(17, 1, 'Licensa Nova BSD.') |