From 67009c7fa8c145cad295c7b1dd71772abab8e048 Mon Sep 17 00:00:00 2001 From: Michael Lehmann Date: Wed, 16 Apr 2025 17:55:53 +0200 Subject: [PATCH] Update aboutme Page. --- .envrc | 5 --- .gitignore | 35 ------------------ devenv.lock | 103 ---------------------------------------------------- devenv.nix | 15 -------- devenv.yaml | 15 -------- index.html | 27 ++++++++++++++ key.pgp | Bin 0 -> 2266 bytes styles.css | 50 +++++++++++++++++++++++++ 8 files changed, 77 insertions(+), 173 deletions(-) delete mode 100644 .envrc delete mode 100644 .gitignore delete mode 100644 devenv.lock delete mode 100644 devenv.nix delete mode 100644 devenv.yaml create mode 100644 index.html create mode 100644 key.pgp create mode 100644 styles.css diff --git a/.envrc b/.envrc deleted file mode 100644 index 30da14f..0000000 --- a/.envrc +++ /dev/null @@ -1,5 +0,0 @@ -export DIRENV_WARN_TIMEOUT=20s - -eval "$(devenv direnvrc)" - -use devenv diff --git a/.gitignore b/.gitignore deleted file mode 100644 index c7da817..0000000 --- a/.gitignore +++ /dev/null @@ -1,35 +0,0 @@ -# If you prefer the allow list template instead of the deny list, see community template: -# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore -# -# Binaries for programs and plugins -*.exe -*.exe~ -*.dll -*.so -*.dylib - -# Test binary, built with `go test -c` -*.test - -# Output of the go coverage tool, specifically when used with LiteIDE -*.out - -# Dependency directories (remove the comment below to include it) -# vendor/ - -# Go workspace file -go.work -go.work.sum - -# env file -.env - -# Devenv -.devenv* -devenv.local.nix - -# direnv -.direnv - -# pre-commit -.pre-commit-config.yaml diff --git a/devenv.lock b/devenv.lock deleted file mode 100644 index 8236ba8..0000000 --- a/devenv.lock +++ /dev/null @@ -1,103 +0,0 @@ -{ - "nodes": { - "devenv": { - "locked": { - "dir": "src/modules", - "lastModified": 1744815543, - "owner": "cachix", - "repo": "devenv", - "rev": "2e0e691414835585eeddd1e4e740b45b362052cc", - "type": "github" - }, - "original": { - "dir": "src/modules", - "owner": "cachix", - "repo": "devenv", - "type": "github" - } - }, - "flake-compat": { - "flake": false, - "locked": { - "lastModified": 1733328505, - "owner": "edolstra", - "repo": "flake-compat", - "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec", - "type": "github" - }, - "original": { - "owner": "edolstra", - "repo": "flake-compat", - "type": "github" - } - }, - "git-hooks": { - "inputs": { - "flake-compat": "flake-compat", - "gitignore": "gitignore", - "nixpkgs": [ - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1742649964, - "owner": "cachix", - "repo": "git-hooks.nix", - "rev": "dcf5072734cb576d2b0c59b2ac44f5050b5eac82", - "type": "github" - }, - "original": { - "owner": "cachix", - "repo": "git-hooks.nix", - "type": "github" - } - }, - "gitignore": { - "inputs": { - "nixpkgs": [ - "git-hooks", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1709087332, - "owner": "hercules-ci", - "repo": "gitignore.nix", - "rev": "637db329424fd7e46cf4185293b9cc8c88c95394", - "type": "github" - }, - "original": { - "owner": "hercules-ci", - "repo": "gitignore.nix", - "type": "github" - } - }, - "nixpkgs": { - "locked": { - "lastModified": 1733477122, - "owner": "cachix", - "repo": "devenv-nixpkgs", - "rev": "7bd9e84d0452f6d2e63b6e6da29fe73fac951857", - "type": "github" - }, - "original": { - "owner": "cachix", - "ref": "rolling", - "repo": "devenv-nixpkgs", - "type": "github" - } - }, - "root": { - "inputs": { - "devenv": "devenv", - "git-hooks": "git-hooks", - "nixpkgs": "nixpkgs", - "pre-commit-hooks": [ - "git-hooks" - ] - } - } - }, - "root": "root", - "version": 7 -} diff --git a/devenv.nix b/devenv.nix deleted file mode 100644 index 29d3537..0000000 --- a/devenv.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ - pkgs, - lib, - config, - ... -}: { - # https://devenv.sh/languages/go/ - languages.go.enable = true; - - # https://devenv.sh/shell/ - packages = [pkgs.zsh]; - shell = pkgs.zsh; - - # See full reference at https://devenv.sh/reference/options/ -} diff --git a/devenv.yaml b/devenv.yaml deleted file mode 100644 index 116a2ad..0000000 --- a/devenv.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# yaml-language-server: $schema=https://devenv.sh/devenv.schema.json -inputs: - nixpkgs: - url: github:cachix/devenv-nixpkgs/rolling - -# If you're using non-OSS software, you can set allowUnfree to true. -# allowUnfree: true - -# If you're willing to use a package that's vulnerable -# permittedInsecurePackages: -# - "openssl-1.1.1w" - -# If you have more than one devenv you can merge them -#imports: -# - ./backend diff --git a/index.html b/index.html new file mode 100644 index 0000000..2de22d3 --- /dev/null +++ b/index.html @@ -0,0 +1,27 @@ + + + + + + About Me + + + + +
+

guest@about-me:~$ cat about-me.txt

+
+Name:     Michael Lehmann
+Mastodon: @michaellehmann@mastodontech.de
+Email:    michaellehmann(at)bluewin.ch
+
+PGP Fingerprint: A892 F225 B376 1D68 F5B8 3F26 A783 A5B8 5050 C652 
+Download Public Key
+
+    
+

guest@about-me:~$

+
+
+ + + \ No newline at end of file diff --git a/key.pgp b/key.pgp new file mode 100644 index 0000000000000000000000000000000000000000..74771c9e7b63efdd679d43906c31eaf9ca21943f GIT binary patch literal 2266 zcmbQq#LJQ@d(ntdfZ^oQ`VNmP(yO`~1kwubWH>W0y;(c;U(E)DEq&&B(B|w6 zhp^II-W4?&TuZ!s=O5-h_1Na@A<@7(Dc1;J5oZJ5o@N2Ayrp-}MZdYTW~Xx4i{qYa z>ZN`Ex3%2)|F=3k;F*WAWrt;2*Y+N+#`=^IprCpIH}}BI?guuhSAItMsgFqISurpmkG4 zEJNH~#P0k&f2#cQ#Hw7)EQ>n7(8+G=DlK+exnF2n7S}Ij9Xwxe78}?i)5UdFx$m;mx^PoQ|g(SE&5l?vh|x(_j~D0yLX94 zPTi|-NW1=1=HZm(ao0mU|7RWFe|@{D(E1d|dlM%KpD#1 z)%IZN54gQ*nW^m7Tn(GjukW>seJ18i_b0EW_Vou z;Ih8kE?NBKmW=1ucdB1ksQcIZp~PNMFZNr7$*DYJ20=y!#x2^unaLT6sW}QhsTsM6 zd3g#pxe$RI2;U(or!=)ZGfyu$!>*GlkVTl0gTY!%k!8iCPpX^CWHY|*uvc5&ymUuE zz_B1!CQ#C1l4fS*=Hy^!Vp3va6XoLM;AUbGV`64xl4EBQZ(!i!6o9Fps42j3sFqo8 z#kDzSYW@GZ7bwo}Sh{SH*E3OH^OgV1N~UcR-Ja&cTdq`N=s7?A@QLNu(v+U3#YqV4 zxG=Y3d#Tsix4li$7R-S+#r$P$k}TcX-&I~@e;jsjrn08z`XUJx|PIU=!FH@%ri14o|M$vipNSxEWHm6LvIcI{!oTh2_r~90o z|M7E3b%}=LYeglY?Ylp(h;~(z`DT=#A=UBc((%~GVvZfbPc!n`&E`BgI@3j?Kq*_m zb)3iJ$6Rn%S>q(@x|O%gzaYQzB<#sf#r_-rUWjz z&pTfKS+ZYpUajrZ%bZ?z^1cOYd)Ot!!0di8VF& zl72rtrZ2T6RMmZ&o9Pd}X~$+y;pzRc z#j;e@UxDF~lE+GxOJ4ai%z})0=KX#-mBHxhhuNzWo=av+vKTelINEg0y%BMuRq?uq z>gT-wjnXoA1=GU_qXyPw}**S)vpztv;? zj4iw+6)bhDwx<<7ekpm1ef^WydH=IME36J|vkS1OGt{nl`}4L%g1X?Vmp>b&CMm6u z3o(NW07FwU{D}X z#_%8)By+s^|0f-H5DCpSx}bCX)yv4uBU92%!ySI8#gYY?q)slV(V;1ujn4!&N;#*|6TLz;N-_1o+3wDt_p9|Vf4PUZk@-xU55@_ z-T2^>-QM)0H)1E-oz8oeJTY~j9LxHTw^ILl@R(M3FrUiN-^2dSTYb~Fy;u2b!uL9u z-pJQeY~v_cv~T*W2UAsD-)&Eg=@{%C&P`ToEBUH&zXCN2!0d5vi{pI)~2 zC9_uQZdGG0kGt>bNXhwJx%@rLtIh@@@8rd+`xmBh zofC)(d~-oy!n!tg&Yq-o!K;f|xRjMACC>J8lmFb8-?P`nu3|@TebE-LEzhRUaeJ{T gcix)A?YT=Xwyy3kE@XG%=j-jZ^4Tk#CH0^K0IPm2dH?_b literal 0 HcmV?d00001 diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..fb50b69 --- /dev/null +++ b/styles.css @@ -0,0 +1,50 @@ +/* Grundlegende Stileinstellungen */ +html, +body { + margin: 0; + padding: 0; + height: 100%; + background-color: black; + color: #33FF00; + /* klassisches grün */ + font-family: "Courier New", Courier, monospace; + font-size: 16px; + line-height: 1.5; +} + +/* Container für den Inhalt */ +.terminal-container { + padding: 20px; + max-width: 800px; + margin: 0 auto; +} + +/* Terminal Text-Stil */ +.prompt { + color: #66FF66; +} + +/* Links im Terminal-Stil */ +a { + color: #33FF00; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +/* Optional: Hinzufügen eines blinkenden Cursors */ +.cursor { + display: inline-block; + background-color: #33FF00; + width: 10px; + margin-left: 5px; + animation: blink 1s step-start infinite; +} + +@keyframes blink { + 50% { + opacity: 0; + } +} \ No newline at end of file