make it based

This commit is contained in:
2024-12-06 14:33:13 +00:00
parent 0bdea75b18
commit cc596a0645
16 changed files with 279 additions and 1574 deletions
-2
View File
@@ -1,2 +0,0 @@
/target
/dist
+4 -4
View File
@@ -1,11 +1,11 @@
www.futile.eu { www.futile.eu {
redir https://futile.eu{uri} redir https://futile.eu{uri}
} }
futile.eu { futile.eu {
root * /var/www/futile.eu/dist root * /var/www/futile.eu
file_server file_server
encode gzip zstd encode gzip zstd
} }
import Caddyfile.d/*.caddyfile import Caddyfile.d/*.caddyfile
Generated
-1231
View File
File diff suppressed because it is too large Load Diff
-9
View File
@@ -1,9 +0,0 @@
[package]
name = "site"
version = "0.1.0"
edition = "2021"
[dependencies]
fastrand = { version = "2.2.0", features = ["js"] }
web-sys = { version = "0.3.74", features = ["Window"] }
yew = { version = "0.21.0", features = ["csr"] }
+1 -3
View File
@@ -1,10 +1,8 @@
## site ## site
my website on the internet my website on the internet
<br><br>![](static/www/favicon.ico)
## stack ## stack
so basically: so basically:
- html, css - html, css, js
- [yew framework](https://yew.rs)
- [caddy server](https://caddyserver.com) - [caddy server](https://caddyserver.com)
- cheapest hetzner vps - cheapest hetzner vps
-6
View File
@@ -1,6 +0,0 @@
[build]
target = "static/www/index.html"
minify = "on_release"
[watch]
watch = ["src/", "static/www/"]
+270
View File
@@ -0,0 +1,270 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>« futile »</title>
<link rel="preload" href="static/fonts/bokor.woff2" as="font" type="font/woff2" crossorigin />
<link rel="preload" href="static/fonts/ibm-plex-mono.woff2" as="font" type="font/woff2" crossorigin />
<style>
@font-face {
font-family: "Bokor";
font-style: normal;
font-weight: 400;
font-display: swap;
src: local("Bokor"), url("static/fonts/bokor.woff2") format("woff2");
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: "IBM Plex Mono";
font-style: normal;
font-weight: 400;
font-display: swap;
src: local("IBM Plex Mono"), url("static/fonts/ibm-plex-mono.woff2") format("woff2");
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body {
background-color: black;
color: white;
font-family: "IBM Plex Mono", monospace;
}
::selection {
background-color: white;
color: black;
}
.box,
div.footer {
display: flex;
justify-content: center;
align-items: center;
max-width: 480px;
margin: 0 auto;
padding: 0 20px;
box-sizing: border-box;
}
.main-title {
font-family: "Bokor", "Georgia", serif;
font-size: 5em;
line-height: 1em;
margin: 0.2em 0 0 0;
user-select: none;
font-weight: normal;
}
@supports (-moz-appearance: none) {
.main-title {
font-weight: bold;
}
}
.separator {
color: white;
margin: 0.5em auto 0em;
width: 50px;
}
.content {
line-height: 1.3em;
}
.click {
color: white;
text-decoration: underline dotted;
}
.click:hover {
text-decoration: underline solid;
}
.button {
display: inline-block;
padding: 3px 6px;
color: white;
background-color: black;
border: 1px solid white;
cursor: pointer;
user-select: none;
}
.button.shiny {
position: relative;
overflow: hidden;
}
.button.shiny::before {
content: "";
position: absolute;
top: 0;
left: -110%;
width: 110%;
height: 100%;
background: rgba(255, 255, 255, 0.5);
transform: skewX(-30deg);
animation: shine 5s infinite;
animation-delay: 5s;
visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
.button.shiny::before {
animation: none;
}
}
@keyframes shine {
0% {
left: -110%;
visibility: hidden;
}
10% {
visibility: visible;
left: 110%;
}
100% {
left: 110%;
}
}
ul.footer {
list-style-type: none;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
ul.footer li {
line-height: 0;
}
ul.footer li a {
color: white;
}
.footer-container {
margin: 20px auto auto auto;
}
@media (min-height: 816px) {
.footer-container {
position: absolute;
inset: auto 0 12px;
margin: auto auto auto auto;
}
}
ul.footer.buttons {
padding: 0;
}
div.footer.quote {
text-align: center;
word-wrap: break-word;
margin: -24px auto auto auto;
}
div.footer.links {
margin: -12px auto auto auto;
gap: 6px;
}
</style>
<script>
const quotes = [
"who are you",
"lorem ipsum dolor sit amet",
"hot garfields in your area",
"remember to drink water",
"i am not a web developer",
"it's nice, isn't it?",
"do you like hurting other people?",
];
document.addEventListener('DOMContentLoaded', () => {
const randomIndex = Math.floor(Math.random() * quotes.length);
document.getElementById('quote').textContent = '« ' + quotes[randomIndex] + ' »';
});
</script>
<link rel="icon"
href="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00MCAtNDAgODAgODAiPgogIDxjaXJjbGUgcj0iMzkiLz4KICA8cGF0aCBmaWxsPSIjZmZmIiBkPSJNMCwzOGEzOCwzOCAwIDAgMSAwLC03NmExOSwxOSAwIDAgMSAwLDM4YTE5LDE5IDAgMCAwIDAsMzgiLz4KICA8Y2lyY2xlIHI9IjUiIGN5PSIxOSIgZmlsbD0iI2ZmZiIvPgogIDxjaXJjbGUgcj0iNSIgY3k9Ii0xOSIvPgo8L3N2Zz4K">
</head>
<body>
<script>0</script>
<div class="box">
<h1 class="main-title">futile</h1>
</div>
<hr class="separator" />
<div class="box">
<p class="content">
hello, my name is futile. i am a weird concept from the internet (or a person from europe, depending on who
you ask)<br /><br />
i like programming (mostly rust), computers, linux, malicious software like game hacks and malware, and any
vehicle whether it drives or flies.<br /><br />
everything i know about the aforementioned things is self-taught. i also speak english and russian
fluently.<br /><br />
if you want to contact me, email <a class="click" href="mailto:me@futile.eu">me@futile.eu</a><br /><br />
<script>
const message = `hey!
could use a second pair of hands with something? programming, sys administration, or otherwise technical?
i would love to work with/for you! reach out to me via email [me@futile.eu] (even just to exchange info for another platform)! paying me is optional, just be upfront with what you wish to do.`
</script>
<a class="button shiny" onclick="alert(message)">hire me!</a>
</p>
</div>
<div class="footer-container">
<div class="footer">
<ul class="footer buttons">
<li><a href="https://futile.eu"><img src="static/buttons/futile.png" width="88px" height="31px"
alt="button that says 'futile' in white, grotesque font, on a black background, with a white outline | by futile" /></a>
</li>
<li><a href="https://xenia.blahaj.land/"><img src="static/buttons/rose_88x31.png" width="88px"
height="31px"
alt="button that says 'rose' with a rose growing out of the 'o', with milk-chan to the right of the text | by rose" /></a>
</li>
<li><iframe src="https://increm.net/badge?key=futile" title="incremnet badge" width="88" height="31"
frameborder="0"></iframe></li>
<li><a href="https://fedoraproject.org/spins/kde"><img src="static/buttons/fedora.png" width="88px"
height="31px"
alt="button that says 'powered by fedora' in white and blue, with the fedora logo to the left | by unknown; retouched by futile" /></a>
</li>
<li><a href="https://mozilla.org/firefox"><img src="static/buttons/firefox4.gif" width="88px"
height="31px"
alt="button that flashes between the texts 'tested on' and 'firefox' in firefox's orange, yellow, and purple scheme, with the firefox logo to the left | by unknown" /></a>
</li>
<li><a href="https://vscodium.com"><img src="static/buttons/vscodium.com.png" width="88px" height="31px"
alt="button that says 'made with vscodium' in light blue, with the vscodium logo to the right | by unknown" /></a>
</li>
<li><img src="static/buttons/FirtniteButton.png" onclick="alert('firt night')" width="88px"
height="31px"
alt="button that says 'firtnite' (a misspelling of 'fortnite'), otherwise looks very similar to an old fortnite title screen | by unknown" />
</li>
<li><a href="https://ublockorigin.com"><img src="static/buttons/ublock.png" width="88px" height="31px"
alt="button (grey) that says 'ublock origin now!', with the ublock origin red logo to the left | by unknown" /></a>
</li>
<li><a href="https://rust-lang.org"><img src="static/buttons/rustNOW.png" width="88px" height="31px"
alt="button (grey) that says 'rust now!', with the rust gear logo to the left and a yellow banner that says '1.82.0' on the to the bottom right | by futile" /></a>
</li>
<li><a href="https://1337x.to"><img src="static/buttons/piracy.png" width="88px" height="31px"
alt="button (grey) that says 'piracy now!', with a jolly roger flag to the left and a black banner that says 'free' on the to the bottom right | by unknown; retouched by futile" /></a>
</li>
</ul>
</div>
<div class="footer quote">
<p id="quote">&nbsp;</p>
</div>
<div class="footer links">
<a class="click" target="_blank" href="https://codeberg.org/futile">git</a>
<a class="click" target="_blank" href="https://steamcommunity.com/id/elituf">steam</a>
</div>
</div>
</body>
</html>
+4 -6
View File
@@ -1,14 +1,12 @@
server := "futile@futile.eu" server := "futile@futile.eu"
deploy := "/var/www/futile.eu"
deploy-wasm: deploy-site:
trunk build --release scp -pr index.html static/ {{server}}:{{deploy}}
rm -r dist/static/www
ssh {{server}} 'rm -rf /var/www/futile.eu/dist/'
scp -pr dist/ {{server}}:/var/www/futile.eu/dist/
deploy-caddy: deploy-caddy:
scp -pr Caddyfile {{server}}:Caddyfile scp -pr Caddyfile {{server}}:Caddyfile
ssh {{server}} 'sudo mv Caddyfile /etc/caddy/Caddyfile' ssh {{server}} 'sudo mv Caddyfile /etc/caddy/Caddyfile'
ssh {{server}} 'sudo systemctl reload caddy' ssh {{server}} 'sudo systemctl reload caddy'
deploy: deploy-wasm deploy-caddy deploy: deploy-site deploy-caddy
-56
View File
@@ -1,56 +0,0 @@
use yew::prelude::*;
fn firtnite() -> Callback<MouseEvent> {
Callback::from(|_| {
web_sys::window()
.unwrap()
.alert_with_message("firt night")
.unwrap();
})
}
pub fn buttons() -> Html {
html! {
<div class="footer">
<ul class="footer buttons">
<li><a href="https://futile.eu"><img
src="static/buttons/futile.png" width="88px" height="31px"
alt="button that says 'futile' in white, grotesque font, on a black background, with a white outline | by futile"
/></a></li>
<li><a href="https://xenia.blahaj.land/"><img
src="static/buttons/rose_88x31.png" width="88px" height="31px"
alt="button that says 'rose' with a rose growing out of the 'o', with milk-chan to the right of the text | by rose"
/></a></li>
<li><iframe src="https://increm.net/badge?key=futile" title="incremnet badge" width="88" height="31" frameborder="0"></iframe></li>
<li><a href="https://fedoraproject.org/spins/kde"><img
src="static/buttons/fedora.png" width="88px" height="31px"
alt="button that says 'powered by fedora' in white and blue, with the fedora logo to the left | by unknown; retouched by futile"
/></a></li>
<li><a href="https://mozilla.org/firefox"><img
src="static/buttons/firefox4.gif" width="88px" height="31px"
alt="button that flashes between the texts 'tested on' and 'firefox' in firefox's orange, yellow, and purple scheme, with the firefox logo to the left | by unknown"
/></a></li>
<li><a href="https://vscodium.com"><img
src="static/buttons/vscodium.com.png" width="88px" height="31px"
alt="button that says 'made with vscodium' in light blue, with the vscodium logo to the right | by unknown"
/></a></li>
<li><img
src="static/buttons/FirtniteButton.png" onclick={ firtnite() } width="88px" height="31px"
alt="button that says 'firtnite' (a misspelling of 'fortnite'), otherwise looks very similar to an old fortnite title screen | by unknown"
/></li>
<li><a href="https://ublockorigin.com"><img
src="static/buttons/ublock.png" width="88px" height="31px"
alt="button (grey) that says 'ublock origin now!', with the ublock origin red logo to the left | by unknown"
/></a></li>
<li><a href="https://rust-lang.org"><img
src="static/buttons/rustNOW.png" width="88px" height="31px"
alt="button (grey) that says 'rust now!', with the rust gear logo to the left and a yellow banner that says '1.82.0' on the to the bottom right | by futile"
/></a></li>
<li><a href="https://1337x.to"><img
src="static/buttons/piracy.png" width="88px" height="31px"
alt="button (grey) that says 'piracy now!', with a jolly roger flag to the left and a black banner that says 'free' on the to the bottom right | by unknown; retouched by futile"
/></a></li>
</ul>
</div>
}
}
-24
View File
@@ -1,24 +0,0 @@
use yew::prelude::*;
const HIRE_MESSAGE: &str = "hey!\ncould use a second pair of hands with something? programming, sys administration, or otherwise technical?\n\ni would love to work with/for you! reach out to me via email [me@futile.eu] (even just to exchange info for another platform)! paying me is optional, just be upfront with what you wish to do.";
fn hire() -> Callback<MouseEvent> {
Callback::from(|_| {
web_sys::window()
.unwrap()
.alert_with_message(HIRE_MESSAGE)
.unwrap();
})
}
pub fn content() -> Html {
html! {
<p class="content">
{ "hello, my name is futile. i am a weird concept from the internet (or a person from europe, depending on who you ask)." }<br /><br />
{ "i like programming (mostly rust), computers, linux, malicious software like game hacks and malware, and any vehicle whether it drives or flies." }<br /><br />
{ "everything i know about the aforementioned things is self-taught. i also speak english and russian fluently." }<br /><br />
{ "if you want to contact me, email " }<a class="click" href="mailto:me@futile.eu"> { "me@futile.eu" } </a><br /><br />
<a class="button shiny" onclick={ hire() }> { "hire me!" } </a>
</p>
}
}
-44
View File
@@ -1,44 +0,0 @@
mod buttons;
mod content;
use yew::prelude::*;
const QUOTES: [&str; 7] = [
"who are you",
"lorem ipsum dolor sit amet",
"hot garfields in your area",
"remember to drink water",
"i am not a web developer",
"it's nice, isn't it?",
"do you like hurting other people?",
];
#[function_component(Page)]
fn page() -> Html {
let quote = use_state(|| fastrand::choice(QUOTES).unwrap());
html! {
<>
<div class="box">
<h1 class="main-title"> { "futile" } </h1>
</div>
<hr class="separator" />
<div class="box">
{ content::content() }
</div>
<div class="footer-container">
{ buttons::buttons() }
<div class="footer quote">
<p> { "« " } { *quote } { " »" } </p>
</div>
<div class="footer links">
<a class="click" target="_blank" href="https://codeberg.org/futile"> { "git" } </a>
<a class="click" target="_blank" href="https://steamcommunity.com/id/elituf"> { "steam" } </a>
</div>
</div>
</>
}
}
fn main() {
yew::Renderer::<Page>::new().render();
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

-18
View File
@@ -1,18 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>« futile »</title>
<script> let FF_FOUC_FIX; </script>
<link rel="preconnect" href="https://increm.net">
<link rel="preload" href="https://increm.net/badge?key=futile" as="image">
</head>
<link data-trunk rel="rust" href="../../Cargo.toml" />
<link data-trunk rel="icon" href="favicon.ico" />
<link data-trunk rel="scss" href="style.scss" />
<link data-trunk rel="copy-dir" data-target-path="static/" href="../../static/" />
</html>
-171
View File
@@ -1,171 +0,0 @@
$primary-color: white;
$background-color: black;
$overlay: rgba(255, 255, 255, 0.5);
$font-path: "static/fonts";
@font-face {
font-family: 'Bokor';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Bokor'),
url("#{$font-path}/bokor-latin-400-normal.woff2") format('woff2');
}
@font-face {
font-family: 'IBM Plex Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('IBM Plex Mono'),
url("#{$font-path}/ibm-plex-mono-latin-400-normal.woff2") format('woff2');
}
body {
background-color: $background-color;
color: $primary-color;
font-family: 'IBM Plex Mono', monospace;
}
::selection {
background-color: $primary-color;
color: $background-color;
}
@mixin flex-center {
display: flex;
justify-content: center;
align-items: center;
}
.box,
div.footer {
@include flex-center;
max-width: 480px;
margin: 0 auto;
padding: 0 20px;
box-sizing: border-box;
}
.main-title {
font-family: 'Bokor', 'Georgia', serif;
font-size: 5em;
line-height: 1em;
margin: 0.2em 0 0 0;
user-select: none;
font-weight: normal;
@supports (-moz-appearance: none) {
font-weight: bold;
}
}
.separator {
color: $primary-color;
margin: 0.5em auto 0em;
width: 50px;
}
.content {
line-height: 1.3em;
}
.click {
color: $primary-color;
text-decoration: underline dotted;
&:hover {
text-decoration: underline solid;
}
}
.button {
display: inline-block;
padding: 3px 6px;
color: $primary-color;
background-color: $background-color;
border: 1px solid $primary-color;
cursor: pointer;
user-select: none;
&.shiny {
position: relative;
overflow: hidden;
&::before {
content: '';
position: absolute;
top: 0;
left: -110%;
width: 110%;
height: 100%;
background: $overlay;
transform: skewX(-30deg);
animation: shine 5s infinite;
animation-delay: 5s;
visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
&::before {
animation: none;
}
}
}
}
@keyframes shine {
0% {
left: -110%;
visibility: hidden;
}
10% {
visibility: visible;
left: 110%;
}
100% {
left: 110%;
}
}
ul.footer {
list-style-type: none;
@include flex-center;
flex-wrap: wrap;
li {
line-height: 0;
a {
color: $primary-color;
}
}
}
.footer-container {
margin: 20px auto auto auto;
@media (min-height: 816px) {
position: absolute;
inset: auto 0 12px;
margin: auto auto auto auto;
}
}
ul.footer.buttons {
padding: 0;
}
div.footer.quote {
text-align: center;
word-wrap: break-word;
margin: -24px auto auto auto;
}
div.footer.links {
margin: -12px auto auto auto;
gap: 6px;
}