(table with id/check, description, requirement, required for 100%, reward)
-
without die
-
without being arrested
-
no cheats used
-
maximum health
-
maximum stamina
| param( | |
| [string]$FilePath | |
| ) | |
| if (-not (Test-Path $FilePath)) { | |
| Write-Host "File not found: $FilePath" -ForegroundColor Red | |
| exit | |
| } | |
| $sites = Get-Content $FilePath |
| import numpy as np | |
| import pandas as pd | |
| from sklearn.linear_model import LinearRegression | |
| from sklearn.preprocessing import PolynomialFeatures | |
| from statsmodels.tsa.holtwinters import ExponentialSmoothing | |
| from statsmodels.tsa.arima.model import ARIMA | |
| from statsmodels.tsa.statespace.structural import UnobservedComponents | |
| from scipy.optimize import curve_fit | |
| import warnings |
| from bs4 import BeautifulSoup | |
| with open("input.html", "r", encoding="utf-8") as f: | |
| soup = BeautifulSoup(f, "html.parser") | |
| for table in soup.find_all("table"): | |
| tbody = table.find("tbody") | |
| if not tbody: | |
| continue |
| <?php | |
| $tty = array_map(fn($line) => $line[1], array_filter(array_map(fn($line)=> explode(":", $line), array_map(fn($line) => | |
| preg_replace("/\s+/", "", $line),explode("\n", shell_exec("mode con")))), fn($line) => count($line)>1)); |
| #include <Servo.h> // Include the Servo library | |
| Servo myServo; // Create a Servo object | |
| const int SonarTrigger = 7; // define o pino 7 como Trigger | |
| const int SonarEcho = 8; // define o pino 6 como Echo | |
| const int led_olhos = 9; | |
| const int buzzer = 10; | |
| const int servo = 11; // Pino do servo |
#["LÓGICA DE PROGRAMAÇÃO" É BOBAGEM, e explicarei porquê.]
Se preparem que o texto é longo.
Várias vezes chegam novatos aqui perguntando como começar, e a galera diz "estuda lógica primeiro, depois vai pra linguagem X". Vivo dizendo que é bobagem. Ontem, em particular, falei isso, e vieram várias pessoas por inbox me perguntar porquê (e uma pra me xingar, achando que falei por arrogância).
Pra facilitar, eu vou escrever uma boa explicação de porquê "lógica de programação" é furada, doa a quem doer, e postar na APDA e no fórum da EnergyLabs (para futuras referências, porque esse assunto vai voltar, ctz).
| .section .data | |
| msg: | |
| .asciz "Hello, World!\n" | |
| .section .text | |
| .global main | |
| main: | |
| mov $1, %rax | |
| mov $1, %rdi |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Child Window</title> | |
| <meta charset="utf-8"> | |
| </head> | |
| <body> | |
| <h2>Child</h2> | |
| <input type="text" id="valueToSend" placeholder="Enter something..." /> | |
| <button onclick="sendMessage()">Send to Parent</button> |
| from requests import get | |
| MAIN_URL = "https://onbibles.com/api/verses/random?bibleSlug=acf" | |
| HEADERS = ({ | |
| 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.2403.157 ' | |
| 'Safari/537.36', 'Accept-Language': 'pt-BR, en;q=0.5'}) | |
| page = get(MAIN_URL, headers=HEADERS) |