kaka.farm

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

commit cb163dc9605f69d3709acd7543657c68567235b3
parent 3ebef0acdc2e5ccddeb85ae4a562fa425a9e9e50
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Sun, 16 Jul 2023 16:47:32 +0300

Add some clipboard-speaker stuff.  Remove tabs and do some niceification.

Diffstat:
Mkaka.farm/index.html | 101++++++++++++++++++++++++++++++++++++++++++++++++++-----------------------------
1 file changed, 64 insertions(+), 37 deletions(-)

diff --git a/kaka.farm/index.html b/kaka.farm/index.html @@ -1,44 +1,71 @@ <!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> + <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> - - <h2>org-roam notes</h2> - <a href="/org-roam-notes/">org-roam notes.</a> - - </div> + <div id="topmostdiv"> + + <h1>Various stuff:</h1> + + <h2>Clipboard Speaker</h2> + <p>An accessibility tool that reads either what you mark with your + mouse: + + <dl> + <dt>Python</dt> + <dd><pre>clipboard-speaker -p</pre></dd> + <dt>Guile</dt> + <dd><pre>clipboard-speaker --clipboard-type=p</pre></dd></dl> + + Or the contents of your clipboard: + + <dl> + <dt>Python<dt> <dd><pre>clipboard-speaker -b</pre></dd> + <dt>Guile<dt> <dd><pre>clipboard-speaker --clipboard-type=b</pre></dd></dl> + + <a href="https://sr.ht/~kakafarm/clipboard-speaker/">Clipboard + Speaker's Sourcehut repositories</a></p> + + <h3>Python Clipboard Speaker</h3> + <p>The original Python code: + <a href="https://git.sr.ht/~kakafarm/clipboard-speaker/">Python + Clipboard Speaker's Sourcehut repository</a></p> + + <h3>Guile Clipboard Speaker</h3> + <p>Also rewritten it in + Guile: <a href="https://git.sr.ht/~kakafarm/clipboard-speaker/">Guile + Clipboard Speaker's Sourcehut repository</a></p> + + <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> + <p><ul> + <li><a href="//sr.ht/~kakafarm/">Sourcehut</a></li> + <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></p> + + <h2>org-roam notes</h2> + <p>Splitting your org-roam notes + into <a href="/private-org-roam-notes/">private</a> + and <a href="/org-roam-notes/">public</a> notes is a pain in the + arse. Luckily for me I + love <a href="//en.wikipedia.org/wiki/Pita"></a>.</p> + + </div> </body> </html>