This file contains 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
services: | |
db: | |
# We use a mariadb image which supports both amd64 & arm64 architecture | |
image: mariadb:10.6.4-focal | |
# If you really want to use MySQL, uncomment the following line | |
#image: mysql:8.0.27 | |
command: '--default-authentication-plugin=mysql_native_password' | |
volumes: | |
- db_data:/var/lib/mysql | |
restart: always |
This file contains 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
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Luís Ângelo Rodrigues Jr.", | |
"label": "Java Developer", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "+55 11 987486795", | |
"url": "http://richardhendricks.example.com", | |
"summary": "Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!", |
This file contains 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
<html> | |
<script> | |
function somaMultiplos3ou5(numero) { | |
let multiplos3 = []; | |
let multiplos5 = []; | |
let soma = 0; | |
let resultado = 0 | |
for (let index = 1; resultado < numero; index++) { |
This file contains 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
#!/bin/bash | |
sudo dd if=/dev/zero of=/swap_file bs=6GB count=6 | |
sudo chmod 600 /swap_file | |
sudo mkswap /swap_file | |
sudo swapon /swap_file | |
sudo snap install htop | |
htop |
This file contains 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
set number | |
set history=500 | |
filetype plugin on | |
filetype indent on | |
set autoread | |
au FocusGained,BufEnter * checktime | |
set wildmenu |
This file contains 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
import puppeteer from 'puppeteer'; | |
const headlessMode = true; | |
const urlWebPontoLoginEmpresa = "https://empresa.com.br/"; | |
const urlWebPontoPunchEmpressa = "https://empresa.com.br/ponto/marcarPonto.asp"; | |
const codEmpresa = "999"; | |
const login = "666"; | |
const password = "QueDeliciaAutomatizar"; |
O Capitalismo falhou, falha e falhar'a em cada uma das sociedades aonde ele colocar os seus tent'aculos que se baseiam na expropriac'ao e na explorac'ao do homem pelo homem. 'E isso que n'os combatemos!
This file contains 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
fun main() { | |
println("Hello world!") | |
println(42) | |
} |
This file contains 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
class Main { | |
public static void main(String[] args) { | |
int NumInt; | |
double NumReal, soma; | |
char Caracter; | |
String[] entrada = new String[]{"1", "2.5", "L"}; | |
//entrada de dados | |
NumInt = Integer.parseInt(entrada[0]); | |
NumReal = Double.parseDouble(entrada[1]); |
NewerOlder