Skip to content

Instantly share code, notes, and snippets.

View iwo-strzebonski's full-sized avatar
🧙
"I seem to have awoken from my nap in the depths of Kur" ~Gilgamesh

Octoturge iwo-strzebonski

🧙
"I seem to have awoken from my nap in the depths of Kur" ~Gilgamesh
View GitHub Profile
{
"name":"TESTOOR #420",
"symbol":"TESTOOR",
"description":"tests the shit out of everything",
"seller_fee_basis_points":500,
"image":"https://ipfs.io/ipfs/QmcSdKMcJmkbY4J7EkNTUDbEPa6Tj2QM7tDZFATghXAU9k",
"external_url":"nftarmory.me",
"edition":"2022",
"attributes":[
{
@iwo-strzebonski
iwo-strzebonski / numbers.html
Created September 26, 2021 05:52
Prosta strona dzieląca liczby na ujemne i dodatnie
<!DOCTYPE html>
<html lang='pl'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width'>
<title>Sprawdzian</title>
<style>
html,
body {
a = 0
b = 0
while (a <= 0 and b <= 0):
try:
a = float(input('Pierwszy bok [cm]: '))
if a <= 0:
raise ValueError
b = float(input('Drugi bok [cm]: '))
if a <= 0: