kaka.farm

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 8e1ec54d3c8b3d5e6b407c8c092ff6cd65a2f95d
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Mon, 12 Jun 2023 17:04:11 +0300

Initial commit

Diffstat:
Akaka.farm/index.css | 23+++++++++++++++++++++++
Akaka.farm/index.html | 41+++++++++++++++++++++++++++++++++++++++++
2 files changed, 64 insertions(+), 0 deletions(-)

diff --git a/kaka.farm/index.css b/kaka.farm/index.css @@ -0,0 +1,23 @@ +body { + background: #222; + color: wheat; + background-image: linear-gradient(to bottom, #111, #222); + background-size: 2px 2px; + /*margin: 0; + padding: 0; + */ + } +div { width: 920px; max-width: calc(100% - 20px); margin: auto; } +#topmostdiv { + box-shadow: 0px -20px 50px -20px #fff; + margin: 0 auto; + min-height: 100vh; + padding: 20px; + background-color: #222; +} +ul { list-style: none; } +li:before { content: "\1F4A9"; } +a:link { color: springgreen; text-decoration: none; } +a:visited { color: cadetblue; text-decoration: none; } +a:hover { color: salmon; text-decoration: underline; } +a:active { color: red; text-decoration: underline; } diff --git a/kaka.farm/index.html b/kaka.farm/index.html @@ -0,0 +1,41 @@ +<!DOCTYPE html> +<head> + <meta charset="UTF-8"> + <meta name="google-site-verification" content="Rn7-9aeCXHF8qx0Z8FNDnxcSOwe0psoppTezn35INDc"> + <link rel="stylesheet" type="text/css" href="index.css"> + <title>💩 kaka farm 💩</title> +</head> + +<body> + <div id="topmostdiv"> + + <h1>Various stuff:</h1> + + <h2>Clipboard Speaker</h2> + <p>An accessibility tool that reads either what you mark with your + mouse: + <pre>clipboard-speaker -p</pre> + or the contents of your clipboard: <pre>clipboard-speaker -b</pre></p> + <a href="https://codeberg.org/yuvallangerontheroad/clipboard-speaker/">Clipboard + Speaker's Codeberg repository</a> + + <h2>Rusty Diceware</h2> + <p><a href="https://github.com/yuvallanger/rusty-diceware/">A diceware + tool in Rustlang</a></p> + + <h2>"Blog"</h2> + <a href="//kaka.farm/blog/">blog-ish</a> + <h2>Commonly Forgotten</h2> + <a href="//kaka.farm/~commonly-forgotten/">Commonly Forgotten</a> has some + terribly written notes. + + <h2>Git repository repositories</h2> + <ul> + <li><a href="//gitgud.io/yuvallanger/">GitGud profile</a></li> + <li><a href="//gitlab.com/yuvallanger/">GitLab profile</a></li> + <li><a href="//github.com/yuvallanger/">GitHub profile</a></li> + </ul> + + </div> +</body> +</html>