diff --git a/bin/til.ts b/bin/til.ts index 074ccc1..2cc4b78 100644 --- a/bin/til.ts +++ b/bin/til.ts @@ -16,6 +16,13 @@ const fileIndex: FileIndex[] = [] const fileIter = globber({ cwd, include: ["????-??-??.md"] }) const decoder = new TextDecoder('utf-8') const encoder = new TextEncoder() + +const header = `*This page contains short notes and sometimes code snippets, of interesting things I just found out.* + +Last updated: ${(new Date()).toISOString().slice(0,10)} + +` + const template = `
@@ -55,4 +62,4 @@ const output = fileIndex .map(render) .join('\n') -Deno.writeFile(outputPath, encoder.encode(output)) +Deno.writeFile(outputPath, encoder.encode(header+output)) diff --git a/blog/index.md b/blog/index.md new file mode 100644 index 0000000..d5513e5 --- /dev/null +++ b/blog/index.md @@ -0,0 +1,27 @@ +*Sometime, I write long-form articles, about a topic that I find interesting. I use this as a way to dive deeper into a topic, while often create an example project on the side.* + +Last updated: 2024-05-13 + + + + + + diff --git a/cv/index.md b/cv/index.md new file mode 100644 index 0000000..bab34ce --- /dev/null +++ b/cv/index.md @@ -0,0 +1,22 @@ +*My Curriculum Vitae / Resume. I know, there is a difference. This page is technically a resume, while the whole site would be closer to a CV.* + +Last updated: 2024-05-13 + +Introduction Lorem Ipsum Sit Dolor Amet... + +## Headline 1 + +> Some extra info + +* A nice list of things, maybe? +* Could also be a paragraph or two. +* That is totally up to me, I guess. + +## Headline 2 + +> Some more extra info + +* A nice list of things, maybe? +* Could also be a paragraph or two. +* That is totally up to me, I guess. + diff --git a/dist/blog/index.html b/dist/blog/index.html new file mode 100644 index 0000000..cbd7437 --- /dev/null +++ b/dist/blog/index.html @@ -0,0 +1,103 @@ + + + + + + + Weblog aka Blog // the codeartist — programmer and engineer based in Berlin + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Weblog

+
+ +

Sometime, I write long-form articles, about a topic that I find interesting. I use this as a way to dive deeper into a topic, while often create an example project on the side.

+

Last updated: 2024-05-13

+ + + +
+
+ + +
  • home
  • +
  • /now
  • +
  • /til
  • +
  • /projects
  • +
  • /blog
  • +
  • /cv
  • +
  • /stack
  • +
  • /setup
  • +
    + + + + diff --git a/dist/cv/index.html b/dist/cv/index.html new file mode 100644 index 0000000..b648c2f --- /dev/null +++ b/dist/cv/index.html @@ -0,0 +1,101 @@ + + + + + + + CV/Resume // the codeartist — programmer and engineer based in Berlin + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +

    My Resume

    +
    + +

    My Curriculum Vitae / Resume. I know, there is a difference. This page is technically a resume, while the whole site would be closer to a CV.

    +

    Last updated: 2024-05-13

    +

    Introduction Lorem Ipsum Sit Dolor Amet...

    +

    Headline 1

    +
    +

    Some extra info

    +
    +
      +
    • A nice list of things, maybe?
    • +
    • Could also be a paragraph or two.
    • +
    • That is totally up to me, I guess.
    • +
    +

    Headline 2

    +
    +

    Some more extra info

    +
    +
      +
    • A nice list of things, maybe?
    • +
    • Could also be a paragraph or two.
    • +
    • That is totally up to me, I guess.
    • +
    +
    +
    + + +
  • home
  • +
  • /now
  • +
  • /til
  • +
  • /projects
  • +
  • /blog
  • +
  • /cv
  • +
  • /stack
  • +
  • /setup
  • +
    + + + + diff --git a/dist/now/index.html b/dist/now/index.html index 3a06e75..1bb7d7a 100644 --- a/dist/now/index.html +++ b/dist/now/index.html @@ -38,7 +38,7 @@

    This page shows what I'm up to at the moment, following the idea of the /now page introduced by Derek Sivers. You can find more now pages on nownownow.

    Last updated: 2024-05-12

    -

    Still live in Berlin where I am working fully remote. I'm appproaching the second anniversary at Code Gaia now and have no plans to change any of it.

    +

    Still live in Berlin where I am working fully remote. I'm appproaching the second anniversary at Code Gaia now and have no plans to change any of it.

    Priorities

    I do a lot of things all the time and have a hard time to focus. Most of my energy right now hopefully flows into the following things:

    diff --git a/dist/projects/index.html b/dist/projects/index.html new file mode 100644 index 0000000..3b6c62d --- /dev/null +++ b/dist/projects/index.html @@ -0,0 +1,101 @@ + + + + + + + Active Projects // the codeartist — programmer and engineer based in Berlin + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +

    Active Projects

    +
    + +

    My currently active projects. This is mostly about software, but might also include some TTRPG stuff, from time to time.

    +

    Last updated: 2024-05-13

    +

    Introduction Lorem Ipsum Sit Dolor Amet...

    +

    Headline 1

    +
    +

    Some extra info

    +
    +
      +
    • A nice list of things, maybe?
    • +
    • Could also be a paragraph or two.
    • +
    • That is totally up to me, I guess.
    • +
    +

    Headline 2

    +
    +

    Some more extra info

    +
    +
      +
    • A nice list of things, maybe?
    • +
    • Could also be a paragraph or two.
    • +
    • That is totally up to me, I guess.
    • +
    +
    +
    + + +
  • home
  • +
  • /now
  • +
  • /til
  • +
  • /projects
  • +
  • /blog
  • +
  • /cv
  • +
  • /stack
  • +
  • /setup
  • +
    + + + + diff --git a/dist/setup/index.html b/dist/setup/index.html new file mode 100644 index 0000000..7773b60 --- /dev/null +++ b/dist/setup/index.html @@ -0,0 +1,101 @@ + + + + + + + My Setup // the codeartist — programmer and engineer based in Berlin + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +

    My Hardware Setup

    +
    + +

    As a software engineer, the tools I use define how I work and I find it always inspiring to see the tools, other people use. This page focusses on Software. For Hardware, check /setup.

    +

    Last updated: 2024-05-13

    +

    Introduction Lorem Ipsum Sit Dolor Amet...

    +

    Headline 1

    +
    +

    Some extra info

    +
    +
      +
    • A nice list of things, maybe?
    • +
    • Could also be a paragraph or two.
    • +
    • That is totally up to me, I guess.
    • +
    +

    Headline 2

    +
    +

    Some more extra info

    +
    +
      +
    • A nice list of things, maybe?
    • +
    • Could also be a paragraph or two.
    • +
    • That is totally up to me, I guess.
    • +
    +
    +
    + + +
  • home
  • +
  • /now
  • +
  • /til
  • +
  • /projects
  • +
  • /blog
  • +
  • /cv
  • +
  • /stack
  • +
  • /setup
  • +
    + + + + diff --git a/dist/stack/index.html b/dist/stack/index.html new file mode 100644 index 0000000..ac6ccc2 --- /dev/null +++ b/dist/stack/index.html @@ -0,0 +1,101 @@ + + + + + + + My Stack // the codeartist — programmer and engineer based in Berlin + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +

    My Software Stack

    +
    + +

    As a software engineer, the tools I use define how I work and I find it always inspiring to see the tools, other people use. This page focusses on Software. For Hardware, check /setup.

    +

    Last updated: 2024-05-13

    +

    Introduction Lorem Ipsum Sit Dolor Amet...

    +

    Headline 1

    +
    +

    Some extra info

    +
    +
      +
    • A nice list of things, maybe?
    • +
    • Could also be a paragraph or two.
    • +
    • That is totally up to me, I guess.
    • +
    +

    Headline 2

    +
    +

    Some more extra info

    +
    +
      +
    • A nice list of things, maybe?
    • +
    • Could also be a paragraph or two.
    • +
    • That is totally up to me, I guess.
    • +
    +
    +
    + + +
  • home
  • +
  • /now
  • +
  • /til
  • +
  • /projects
  • +
  • /blog
  • +
  • /cv
  • +
  • /stack
  • +
  • /setup
  • +
    + + + + diff --git a/dist/til/index.html b/dist/til/index.html index 0a24f16..9414718 100644 --- a/dist/til/index.html +++ b/dist/til/index.html @@ -36,7 +36,9 @@

    TIL -- Today I learned

    -
    +

    This page contains short notes and sometimes code snippets, of interesting things I just found out.

    +

    Last updated: 2024-05-13

    +
    Sort list of strings in Javascript diff --git a/layouts/blog/index.html b/layouts/blog/index.html new file mode 100644 index 0000000..071b726 --- /dev/null +++ b/layouts/blog/index.html @@ -0,0 +1,81 @@ + + + + + + + Weblog aka Blog // the codeartist — programmer and engineer based in Berlin + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +

    Weblog

    +
    + + @contents +
    +
    + + +
  • home
  • +
  • /now
  • +
  • /til
  • +
  • /projects
  • +
  • /blog
  • +
  • /cv
  • +
  • /stack
  • +
  • /setup
  • +
    + + + + diff --git a/layouts/cv/index.html b/layouts/cv/index.html new file mode 100644 index 0000000..d9ae43e --- /dev/null +++ b/layouts/cv/index.html @@ -0,0 +1,81 @@ + + + + + + + CV/Resume // the codeartist — programmer and engineer based in Berlin + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +

    My Resume

    +
    + + @contents +
    +
    + + +
  • home
  • +
  • /now
  • +
  • /til
  • +
  • /projects
  • +
  • /blog
  • +
  • /cv
  • +
  • /stack
  • +
  • /setup
  • +
    + + + + diff --git a/layouts/projects/index.html b/layouts/projects/index.html new file mode 100644 index 0000000..83a726f --- /dev/null +++ b/layouts/projects/index.html @@ -0,0 +1,81 @@ + + + + + + + Active Projects // the codeartist — programmer and engineer based in Berlin + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +

    Active Projects

    +
    + + @contents +
    +
    + + +
  • home
  • +
  • /now
  • +
  • /til
  • +
  • /projects
  • +
  • /blog
  • +
  • /cv
  • +
  • /stack
  • +
  • /setup
  • +
    + + + + diff --git a/layouts/setup/index.html b/layouts/setup/index.html new file mode 100644 index 0000000..faa272b --- /dev/null +++ b/layouts/setup/index.html @@ -0,0 +1,81 @@ + + + + + + + My Setup // the codeartist — programmer and engineer based in Berlin + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +

    My Hardware Setup

    +
    + + @contents +
    +
    + + +
  • home
  • +
  • /now
  • +
  • /til
  • +
  • /projects
  • +
  • /blog
  • +
  • /cv
  • +
  • /stack
  • +
  • /setup
  • +
    + + + + diff --git a/layouts/stack/index.html b/layouts/stack/index.html new file mode 100644 index 0000000..5ed767f --- /dev/null +++ b/layouts/stack/index.html @@ -0,0 +1,81 @@ + + + + + + + My Stack // the codeartist — programmer and engineer based in Berlin + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +

    My Software Stack

    +
    + + @contents +
    +
    + + +
  • home
  • +
  • /now
  • +
  • /til
  • +
  • /projects
  • +
  • /blog
  • +
  • /cv
  • +
  • /stack
  • +
  • /setup
  • +
    + + + + diff --git a/now/index.md b/now/index.md index 921d94d..0ea6759 100644 --- a/now/index.md +++ b/now/index.md @@ -2,7 +2,7 @@ Last updated: 2024-05-12 -Still live in Berlin where I am working fully remote. I'm appproaching the second anniversary at [Code Gaia](https://codegaia.io) now and have no plans to change any of it. +Still live in Berlin where I am working fully remote. I'm appproaching the second anniversary at [Code Gaia](https://codegaia.io) now and have no plans to change any of it. ## Priorities diff --git a/projects/index.md b/projects/index.md new file mode 100644 index 0000000..4267843 --- /dev/null +++ b/projects/index.md @@ -0,0 +1,22 @@ +*My currently active projects. This is mostly about software, but might also include some TTRPG stuff, from time to time.* + +Last updated: 2024-05-13 + +Introduction Lorem Ipsum Sit Dolor Amet... + +## Headline 1 + +> Some extra info + +* A nice list of things, maybe? +* Could also be a paragraph or two. +* That is totally up to me, I guess. + +## Headline 2 + +> Some more extra info + +* A nice list of things, maybe? +* Could also be a paragraph or two. +* That is totally up to me, I guess. + diff --git a/setup/index.md b/setup/index.md new file mode 100644 index 0000000..bb23c6f --- /dev/null +++ b/setup/index.md @@ -0,0 +1,22 @@ +*As a software engineer, the tools I use define how I work and I find it always inspiring to see the tools, other people use. This page focusses on Software. For Hardware, check [/setup](/setup).* + +Last updated: 2024-05-13 + +Introduction Lorem Ipsum Sit Dolor Amet... + +## Headline 1 + +> Some extra info + +* A nice list of things, maybe? +* Could also be a paragraph or two. +* That is totally up to me, I guess. + +## Headline 2 + +> Some more extra info + +* A nice list of things, maybe? +* Could also be a paragraph or two. +* That is totally up to me, I guess. + diff --git a/stack/index.md b/stack/index.md new file mode 100644 index 0000000..bb23c6f --- /dev/null +++ b/stack/index.md @@ -0,0 +1,22 @@ +*As a software engineer, the tools I use define how I work and I find it always inspiring to see the tools, other people use. This page focusses on Software. For Hardware, check [/setup](/setup).* + +Last updated: 2024-05-13 + +Introduction Lorem Ipsum Sit Dolor Amet... + +## Headline 1 + +> Some extra info + +* A nice list of things, maybe? +* Could also be a paragraph or two. +* That is totally up to me, I guess. + +## Headline 2 + +> Some more extra info + +* A nice list of things, maybe? +* Could also be a paragraph or two. +* That is totally up to me, I guess. + diff --git a/til/index.md b/til/index.md index 115cb0a..5a9e802 100644 --- a/til/index.md +++ b/til/index.md @@ -1,3 +1,7 @@ +*This page contains short notes and sometimes code snippets, of interesting things I just found out.* + +Last updated: 2024-05-13 +