From 5b09864d5350fa1d41eec2ece2bb98bcfa545293 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sivert=20V=2E=20S=C3=A6ther?= Date: Tue, 29 Mar 2022 23:00:57 +0000 Subject: [PATCH] public/ autocommit --- public/about/index.html | 80 ++++++++++++++++ public/blog/index.html | 80 ++++++++++++++++ public/blog/index.xml | 1 + public/categories/index.html | 83 +++++++++++++++++ public/categories/index.xml | 1 + public/categories/meta/index.html | 102 +++++++++++++++++++++ public/categories/meta/index.xml | 3 + public/chroma.css | 34 +++++++ public/en/index.html | 1 + public/en/sitemap.xml | 1 + public/index.html | 78 ++++++++++++++++ public/index.xml | 2 + public/main.css | 51 +++++++++++ public/nl/sitemap.xml | 1 + public/no/about/index.html | 85 +++++++++++++++++ public/no/blog/index.html | 84 +++++++++++++++++ public/no/blog/index.xml | 1 + public/no/categories/index.html | 88 ++++++++++++++++++ public/no/categories/index.xml | 1 + public/no/categories/meta/index.html | 106 ++++++++++++++++++++++ public/no/categories/meta/index.xml | 2 + public/no/index.html | 83 +++++++++++++++++ public/no/index.xml | 2 + public/no/series/index.html | 81 +++++++++++++++++ public/no/series/index.xml | 1 + public/no/sitemap.xml | 1 + public/no/tags/index.html | 95 +++++++++++++++++++ public/no/tags/index.xml | 1 + public/no/tags/info/index.html | 106 ++++++++++++++++++++++ public/no/tags/info/index.xml | 2 + public/no/tags/meta/index.html | 106 ++++++++++++++++++++++ public/no/tags/meta/index.xml | 2 + public/old/README.md | 3 + public/old/index.html | 16 ++++ public/old/it1/README.md | 2 + public/old/it1/bibliotek/bibliotek.js | 51 +++++++++++ public/old/it1/bibliotek/index.html | 48 ++++++++++ public/old/it1/bruker/index.html | 30 ++++++ public/old/it1/css/form.css | 28 ++++++ public/old/it1/css/gjestebok.css | 5 + public/old/it1/gjestebok/gjestebok.js | 81 +++++++++++++++++ public/old/it1/gjestebok/index.html | 38 ++++++++ public/old/it1/index.html | 32 +++++++ public/old/it1/js/auth.js | 18 ++++ public/old/it1/js/converters/bok.js | 52 +++++++++++ public/old/it1/js/converters/kommentar.js | 34 +++++++ public/old/it1/js/init-firebase.js | 10 ++ public/old/it1/js/navbar.js | 43 +++++++++ public/old/it1/main.css | 19 ++++ public/old/it1/main.js | 0 public/old/it1/navbar/navbar.css | 4 + public/old/it1/navbar/navbar.html | 33 +++++++ public/old/it1/smittestopp/corona.css | 19 ++++ public/old/it1/smittestopp/index.html | 54 +++++++++++ public/old/main.css | 11 +++ public/robots.txt | 19 ++++ public/series/index.html | 76 ++++++++++++++++ public/series/index.xml | 1 + public/sitemap.xml | 1 + public/tags/index.html | 90 ++++++++++++++++++ public/tags/index.xml | 1 + public/tags/info/index.html | 102 +++++++++++++++++++++ public/tags/info/index.xml | 3 + public/tags/meta/index.html | 102 +++++++++++++++++++++ public/tags/meta/index.xml | 3 + 65 files changed, 2394 insertions(+) create mode 100644 public/about/index.html create mode 100644 public/blog/index.html create mode 100644 public/blog/index.xml create mode 100644 public/categories/index.html create mode 100644 public/categories/index.xml create mode 100644 public/categories/meta/index.html create mode 100644 public/categories/meta/index.xml create mode 100644 public/chroma.css create mode 100644 public/en/index.html create mode 100644 public/en/sitemap.xml create mode 100644 public/index.html create mode 100644 public/index.xml create mode 100644 public/main.css create mode 100644 public/nl/sitemap.xml create mode 100644 public/no/about/index.html create mode 100644 public/no/blog/index.html create mode 100644 public/no/blog/index.xml create mode 100644 public/no/categories/index.html create mode 100644 public/no/categories/index.xml create mode 100644 public/no/categories/meta/index.html create mode 100644 public/no/categories/meta/index.xml create mode 100644 public/no/index.html create mode 100644 public/no/index.xml create mode 100644 public/no/series/index.html create mode 100644 public/no/series/index.xml create mode 100644 public/no/sitemap.xml create mode 100644 public/no/tags/index.html create mode 100644 public/no/tags/index.xml create mode 100644 public/no/tags/info/index.html create mode 100644 public/no/tags/info/index.xml create mode 100644 public/no/tags/meta/index.html create mode 100644 public/no/tags/meta/index.xml create mode 100644 public/old/README.md create mode 100644 public/old/index.html create mode 100644 public/old/it1/README.md create mode 100644 public/old/it1/bibliotek/bibliotek.js create mode 100644 public/old/it1/bibliotek/index.html create mode 100644 public/old/it1/bruker/index.html create mode 100644 public/old/it1/css/form.css create mode 100644 public/old/it1/css/gjestebok.css create mode 100644 public/old/it1/gjestebok/gjestebok.js create mode 100644 public/old/it1/gjestebok/index.html create mode 100644 public/old/it1/index.html create mode 100644 public/old/it1/js/auth.js create mode 100644 public/old/it1/js/converters/bok.js create mode 100644 public/old/it1/js/converters/kommentar.js create mode 100644 public/old/it1/js/init-firebase.js create mode 100644 public/old/it1/js/navbar.js create mode 100644 public/old/it1/main.css create mode 100644 public/old/it1/main.js create mode 100644 public/old/it1/navbar/navbar.css create mode 100644 public/old/it1/navbar/navbar.html create mode 100644 public/old/it1/smittestopp/corona.css create mode 100644 public/old/it1/smittestopp/index.html create mode 100644 public/old/main.css create mode 100644 public/robots.txt create mode 100644 public/series/index.html create mode 100644 public/series/index.xml create mode 100644 public/sitemap.xml create mode 100644 public/tags/index.html create mode 100644 public/tags/index.xml create mode 100644 public/tags/info/index.html create mode 100644 public/tags/info/index.xml create mode 100644 public/tags/meta/index.html create mode 100644 public/tags/meta/index.xml diff --git a/public/about/index.html b/public/about/index.html new file mode 100644 index 0000000..e08dc82 --- /dev/null +++ b/public/about/index.html @@ -0,0 +1,80 @@ + + + + + + + + + + +Sivert Does Stuff Online! - About + + + + +
+ +
+
+
+
+
+ +
+
+
+
+

About

+
+

This webpage is my portfolio webpage and blog.

+

It’s build with hugo and hosted on github.io with GitHub Pages!

+
+
+
+
+
+ + + \ No newline at end of file diff --git a/public/blog/index.html b/public/blog/index.html new file mode 100644 index 0000000..b1179ba --- /dev/null +++ b/public/blog/index.html @@ -0,0 +1,80 @@ + + + + + + + + + + + +Sivert Does Stuff Online! - Siverts Tech Adventure Blog + + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Siverts Tech Adventure Blog

+
+

Here you are welcome to take a look at all my blog posts!

+

And be sure to add the RSS feed to your news reader! ;)

+
    +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/public/blog/index.xml b/public/blog/index.xml new file mode 100644 index 0000000..9c71cec --- /dev/null +++ b/public/blog/index.xml @@ -0,0 +1 @@ +Siverts Tech Adventure Blog on Sivert Does Stuff Online!/blog/Recent content in Siverts Tech Adventure Blog on Sivert Does Stuff Online!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3 \ No newline at end of file diff --git a/public/categories/index.html b/public/categories/index.html new file mode 100644 index 0000000..f0700b9 --- /dev/null +++ b/public/categories/index.html @@ -0,0 +1,83 @@ + + + + + + + + + + + +Sivert Does Stuff Online! + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Categories

+
+
    +
  • + +
  • +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/public/categories/index.xml b/public/categories/index.xml new file mode 100644 index 0000000..1e00cc4 --- /dev/null +++ b/public/categories/index.xml @@ -0,0 +1 @@ +Categories on Sivert Does Stuff Online!/categories/Recent content in Categories on Sivert Does Stuff Online!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3Meta/categories/meta/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/categories/meta/ \ No newline at end of file diff --git a/public/categories/meta/index.html b/public/categories/meta/index.html new file mode 100644 index 0000000..aa8e50a --- /dev/null +++ b/public/categories/meta/index.html @@ -0,0 +1,102 @@ + + + + + + + + + + + +Sivert Does Stuff Online! - Meta + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Meta

+
+
    +
  • +
    +
    +

    About

    +This webpage is my portfolio webpage and blog. +It’s build with hugo and hosted on github.io with GitHub Pages! +
    +
    +
  • +
  • +
    +
    +

    Siverts Tech Adventure Blog

    +Here you are welcome to take a look at all my blog posts! +And be sure to add the RSS feed to your news reader! ;) +
    +
    +
  • +
  • +
    +
    +

    Welcome!

    +So I guess I’ve finally got to updating my github.io site. Nice! +
    +
    +
  • +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/public/categories/meta/index.xml b/public/categories/meta/index.xml new file mode 100644 index 0000000..ccbba1b --- /dev/null +++ b/public/categories/meta/index.xml @@ -0,0 +1,3 @@ +Meta on Sivert Does Stuff Online!/categories/meta/Recent content in Meta on Sivert Does Stuff Online!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3About/about/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/about/This webpage is my portfolio webpage and blog. +It’s build with hugo and hosted on github.io with GitHub Pages!Siverts Tech Adventure Blog/blog/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/blog/Here you are welcome to take a look at all my blog posts! +And be sure to add the RSS feed to your news reader! ;)Welcome!/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/So I guess I’ve finally got to updating my github.io site. Nice! \ No newline at end of file diff --git a/public/chroma.css b/public/chroma.css new file mode 100644 index 0000000..b016726 --- /dev/null +++ b/public/chroma.css @@ -0,0 +1,34 @@ +.chroma { background-color: #ffffff } +.chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; } +.chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: auto; overflow: auto; display: block; } +.chroma .hl { display: block; width: 100%;background-color: #ffffcc } +.chroma .lnt { margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f } +.chroma .ln { margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f } +.chroma .k { color: #0000ff } +.chroma .kc { color: #0000ff } +.chroma .kd { color: #0000ff } +.chroma .kn { color: #0000ff } +.chroma .kp { color: #0000ff } +.chroma .kr { color: #0000ff } +.chroma .kt { color: #0000ff } +.chroma .s { color: #009c00 } +.chroma .sa { color: #009c00 } +.chroma .sb { color: #009c00 } +.chroma .sc { color: #009c00 } +.chroma .dl { color: #009c00 } +.chroma .sd { color: #009c00 } +.chroma .s2 { color: #009c00 } +.chroma .se { color: #009c00 } +.chroma .sh { color: #009c00 } +.chroma .si { color: #009c00 } +.chroma .sx { color: #009c00 } +.chroma .sr { color: #009c00 } +.chroma .s1 { color: #009c00 } +.chroma .ss { color: #009c00 } +.chroma .c { color: #ff0000; font-style: italic } +.chroma .ch { color: #ff0000; font-style: italic } +.chroma .cm { color: #ff0000; font-style: italic } +.chroma .c1 { color: #ff0000; font-style: italic } +.chroma .cs { color: #ff0000; font-style: italic } +.chroma .cp { color: #ff0000; font-style: italic } +.chroma .cpf { color: #ff0000; font-style: italic } \ No newline at end of file diff --git a/public/en/index.html b/public/en/index.html new file mode 100644 index 0000000..99e803b --- /dev/null +++ b/public/en/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/en/sitemap.xml b/public/en/sitemap.xml new file mode 100644 index 0000000..123bafa --- /dev/null +++ b/public/en/sitemap.xml @@ -0,0 +1 @@ +/about//categories//tags/info//tags/meta//categories/meta//series//blog//tags// \ No newline at end of file diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..107ee61 --- /dev/null +++ b/public/index.html @@ -0,0 +1,78 @@ + + + + + + + + + + + + +Sivert Does Stuff Online! - Welcome! + + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Welcome!

+
+

So I guess I’ve finally got to updating my github.io site. Nice!

+
+
+
+
+
+ + + \ No newline at end of file diff --git a/public/index.xml b/public/index.xml new file mode 100644 index 0000000..5ab835b --- /dev/null +++ b/public/index.xml @@ -0,0 +1,2 @@ +Welcome! on Sivert Does Stuff Online!/Recent content in Welcome! on Sivert Does Stuff Online!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3About/about/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/about/This webpage is my portfolio webpage and blog. +It’s build with hugo and hosted on github.io with GitHub Pages! \ No newline at end of file diff --git a/public/main.css b/public/main.css new file mode 100644 index 0000000..203a365 --- /dev/null +++ b/public/main.css @@ -0,0 +1,51 @@ + +body { + background-color: rgb(18, 20, 21); + color: lime; +} +#content main { + background-color: rgb(24, 26, 27); + margin: 3% 10%; + padding: 3%; +} + +#navbar { + background-color: #222; +} +#navbar li a:hover { + background-color: #333; +} +#navbar .link-group li { + float: right; +} +#navbar li { + display: inline; + float: left; +} +#navbar ul { + list-style-type: none; + overflow: hidden; + padding: 0; + margin: 0; +} +#navbar a { + text-decoration: none; + text-align: center; + padding: 14px 16px; + display: block; + color: lime; +} + +#lang-menu ul { + background-color: #222; + position: absolute; + min-width: 160px; + display: none; + z-index: 1; +} +#lang-menu a { + display: block; +} +#lang-menu:hover ul { + display: block; +} diff --git a/public/nl/sitemap.xml b/public/nl/sitemap.xml new file mode 100644 index 0000000..4723042 --- /dev/null +++ b/public/nl/sitemap.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/no/about/index.html b/public/no/about/index.html new file mode 100644 index 0000000..4085c8c --- /dev/null +++ b/public/no/about/index.html @@ -0,0 +1,85 @@ + + + + + + + + + + +Sivert Gjør Ting På Nett! - Om websiden + + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Om websiden

+
+

Denne websiden er mitt portefølje og blog.

+

Den er laget med hugo og servert på github.io med GitHub Pages!

+
+
+
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/public/no/blog/index.html b/public/no/blog/index.html new file mode 100644 index 0000000..299af40 --- /dev/null +++ b/public/no/blog/index.html @@ -0,0 +1,84 @@ + + + + + + + + + + + +Sivert Gjør Ting På Nett! - Siverts Teknologi Evenetyr Blog + + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Siverts Teknologi Evenetyr Blog

+
+

Her er du velkommen til å ta en titt på alle mine blog innlegg!

+
    +
+
+
+
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/public/no/blog/index.xml b/public/no/blog/index.xml new file mode 100644 index 0000000..dc4c1a5 --- /dev/null +++ b/public/no/blog/index.xml @@ -0,0 +1 @@ +Siverts Teknologi Evenetyr Blog on Sivert Gjør Ting På Nett!/no/blog/Recent content in Siverts Teknologi Evenetyr Blog on Sivert Gjør Ting På Nett!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3 \ No newline at end of file diff --git a/public/no/categories/index.html b/public/no/categories/index.html new file mode 100644 index 0000000..b2f296c --- /dev/null +++ b/public/no/categories/index.html @@ -0,0 +1,88 @@ + + + + + + + + + + + +Sivert Gjør Ting På Nett! + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Categories

+
+
    +
  • + +
  • +
+
+
+
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/public/no/categories/index.xml b/public/no/categories/index.xml new file mode 100644 index 0000000..a3412bf --- /dev/null +++ b/public/no/categories/index.xml @@ -0,0 +1 @@ +Categories on Sivert Gjør Ting På Nett!/no/categories/Recent content in Categories on Sivert Gjør Ting På Nett!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3Meta/no/categories/meta/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/no/categories/meta/ \ No newline at end of file diff --git a/public/no/categories/meta/index.html b/public/no/categories/meta/index.html new file mode 100644 index 0000000..cce1359 --- /dev/null +++ b/public/no/categories/meta/index.html @@ -0,0 +1,106 @@ + + + + + + + + + + + +Sivert Gjør Ting På Nett! - Meta + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Meta

+
+
    +
  • +
    +
    +

    Om websiden

    +Denne websiden er mitt portefølje og blog. +Den er laget med hugo og servert på github.io med GitHub Pages! +
    +
    +
  • +
  • + +
  • +
  • +
    +
    +

    Velkommen!

    +Så jeg har visst endelig kommet runt til å oppdatere min github.io side. Kult! +
    +
    +
  • +
+
+
+
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/public/no/categories/meta/index.xml b/public/no/categories/meta/index.xml new file mode 100644 index 0000000..57f5bc1 --- /dev/null +++ b/public/no/categories/meta/index.xml @@ -0,0 +1,2 @@ +Meta on Sivert Gjør Ting På Nett!/no/categories/meta/Recent content in Meta on Sivert Gjør Ting På Nett!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3Om websiden/no/about/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/no/about/Denne websiden er mitt portefølje og blog. +Den er laget med hugo og servert på github.io med GitHub Pages!Siverts Teknologi Evenetyr Blog/no/blog/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/no/blog/Her er du velkommen til å ta en titt på alle mine blog innlegg!Velkommen!/no/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/no/Så jeg har visst endelig kommet runt til å oppdatere min github.io side. Kult! \ No newline at end of file diff --git a/public/no/index.html b/public/no/index.html new file mode 100644 index 0000000..3ac7c72 --- /dev/null +++ b/public/no/index.html @@ -0,0 +1,83 @@ + + + + + + + + + + + + +Sivert Gjør Ting På Nett! - Velkommen! + + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Velkommen!

+
+

Så jeg har visst endelig kommet runt til å oppdatere min github.io side. Kult!

+
+
+
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/public/no/index.xml b/public/no/index.xml new file mode 100644 index 0000000..e2003bc --- /dev/null +++ b/public/no/index.xml @@ -0,0 +1,2 @@ +Velkommen! on Sivert Gjør Ting På Nett!/no/Recent content in Velkommen! on Sivert Gjør Ting På Nett!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3Om websiden/no/about/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/no/about/Denne websiden er mitt portefølje og blog. +Den er laget med hugo og servert på github.io med GitHub Pages! \ No newline at end of file diff --git a/public/no/series/index.html b/public/no/series/index.html new file mode 100644 index 0000000..db537f7 --- /dev/null +++ b/public/no/series/index.html @@ -0,0 +1,81 @@ + + + + + + + + + + + +Sivert Gjør Ting På Nett! + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Series

+
+
    +
+
+
+
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/public/no/series/index.xml b/public/no/series/index.xml new file mode 100644 index 0000000..31beec6 --- /dev/null +++ b/public/no/series/index.xml @@ -0,0 +1 @@ +Series on Sivert Gjør Ting På Nett!/no/series/Recent content in Series on Sivert Gjør Ting På Nett!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3 \ No newline at end of file diff --git a/public/no/sitemap.xml b/public/no/sitemap.xml new file mode 100644 index 0000000..0e6fa7e --- /dev/null +++ b/public/no/sitemap.xml @@ -0,0 +1 @@ +/no/categories//no/tags/info//no/tags/meta//no/categories/meta//no/about//no/series//no/blog//no/tags//no/ \ No newline at end of file diff --git a/public/no/tags/index.html b/public/no/tags/index.html new file mode 100644 index 0000000..2de9530 --- /dev/null +++ b/public/no/tags/index.html @@ -0,0 +1,95 @@ + + + + + + + + + + + +Sivert Gjør Ting På Nett! + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Tags

+
+ +
+
+
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/public/no/tags/index.xml b/public/no/tags/index.xml new file mode 100644 index 0000000..341f5eb --- /dev/null +++ b/public/no/tags/index.xml @@ -0,0 +1 @@ +Tags on Sivert Gjør Ting På Nett!/no/tags/Recent content in Tags on Sivert Gjør Ting På Nett!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3Info/no/tags/info/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/no/tags/info/Meta/no/tags/meta/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/no/tags/meta/ \ No newline at end of file diff --git a/public/no/tags/info/index.html b/public/no/tags/info/index.html new file mode 100644 index 0000000..cdfb681 --- /dev/null +++ b/public/no/tags/info/index.html @@ -0,0 +1,106 @@ + + + + + + + + + + + +Sivert Gjør Ting På Nett! - Info + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Info

+
+
    +
  • +
    +
    +

    Om websiden

    +Denne websiden er mitt portefølje og blog. +Den er laget med hugo og servert på github.io med GitHub Pages! +
    +
    +
  • +
  • + +
  • +
  • +
    +
    +

    Velkommen!

    +Så jeg har visst endelig kommet runt til å oppdatere min github.io side. Kult! +
    +
    +
  • +
+
+
+
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/public/no/tags/info/index.xml b/public/no/tags/info/index.xml new file mode 100644 index 0000000..db83eb9 --- /dev/null +++ b/public/no/tags/info/index.xml @@ -0,0 +1,2 @@ +Info on Sivert Gjør Ting På Nett!/no/tags/info/Recent content in Info on Sivert Gjør Ting På Nett!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3Om websiden/no/about/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/no/about/Denne websiden er mitt portefølje og blog. +Den er laget med hugo og servert på github.io med GitHub Pages!Siverts Teknologi Evenetyr Blog/no/blog/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/no/blog/Her er du velkommen til å ta en titt på alle mine blog innlegg!Velkommen!/no/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/no/Så jeg har visst endelig kommet runt til å oppdatere min github.io side. Kult! \ No newline at end of file diff --git a/public/no/tags/meta/index.html b/public/no/tags/meta/index.html new file mode 100644 index 0000000..7259125 --- /dev/null +++ b/public/no/tags/meta/index.html @@ -0,0 +1,106 @@ + + + + + + + + + + + +Sivert Gjør Ting På Nett! - Meta + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Meta

+
+
    +
  • +
    +
    +

    Om websiden

    +Denne websiden er mitt portefølje og blog. +Den er laget med hugo og servert på github.io med GitHub Pages! +
    +
    +
  • +
  • + +
  • +
  • +
    +
    +

    Velkommen!

    +Så jeg har visst endelig kommet runt til å oppdatere min github.io side. Kult! +
    +
    +
  • +
+
+
+
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/public/no/tags/meta/index.xml b/public/no/tags/meta/index.xml new file mode 100644 index 0000000..bf2b059 --- /dev/null +++ b/public/no/tags/meta/index.xml @@ -0,0 +1,2 @@ +Meta on Sivert Gjør Ting På Nett!/no/tags/meta/Recent content in Meta on Sivert Gjør Ting På Nett!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3Om websiden/no/about/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/no/about/Denne websiden er mitt portefølje og blog. +Den er laget med hugo og servert på github.io med GitHub Pages!Siverts Teknologi Evenetyr Blog/no/blog/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/no/blog/Her er du velkommen til å ta en titt på alle mine blog innlegg!Velkommen!/no/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/no/Så jeg har visst endelig kommet runt til å oppdatere min github.io side. Kult! \ No newline at end of file diff --git a/public/old/README.md b/public/old/README.md new file mode 100644 index 0000000..d533b61 --- /dev/null +++ b/public/old/README.md @@ -0,0 +1,3 @@ +# My github.io + +I dunno what to host here, prolly will add someting cool later some time. diff --git a/public/old/index.html b/public/old/index.html new file mode 100644 index 0000000..c73ea0d --- /dev/null +++ b/public/old/index.html @@ -0,0 +1,16 @@ + + + + My humble github.io page + + + + + +
+

Noting to see here

+

You can check out work I did in IT1 (informasjons teknologi 1) a Norwegian optional vacational course here.

+

Or even my very own webpage with some cool stuffs coming soon here.

+
+ + \ No newline at end of file diff --git a/public/old/it1/README.md b/public/old/it1/README.md new file mode 100644 index 0000000..1731af8 --- /dev/null +++ b/public/old/it1/README.md @@ -0,0 +1,2 @@ +# Ghost-Zephyr.github.io +Lolert, github.io i IT1 no. diff --git a/public/old/it1/bibliotek/bibliotek.js b/public/old/it1/bibliotek/bibliotek.js new file mode 100644 index 0000000..d61a346 --- /dev/null +++ b/public/old/it1/bibliotek/bibliotek.js @@ -0,0 +1,51 @@ + +var db = firebase.firestore() + +var list = function(user) { + db.collection("bibliotek") + .withConverter(bookConverter) + .get() + .then(function(query) { + $('#books').html('
') + query.forEach(function(doc) { + book = doc.data() + book.toHtml($('#books')) + }) + }).catch(function(error) { + $('#books').html('

Kunne ikke hente bøker!


'+error+'

') + $('#books').css('color', 'red') + }) +} + +var add = function() { + db.collection("bibliotek") + .withConverter(bookConverter) + .add(new Book( + $('#title')[0].value, + $('#author')[0].value, + $('#publisher')[0].value, + $('#rating')[0].value, + $('#published')[0].value + )).then(function() { + $('#status').html('

La til bok '+$('#title')[0].value+'!

') + $('#status').css('color', 'green') + list() + }).catch(function() { + $('#status').html('

Problem med å legge til bok '+$('#title')[0].value+'!

') + $('#status').css('color', 'red') + }) +} + +var remove = function(id) { + db.collection("bibliotek").doc(id) + .delete().then(function() { + list() + }).catch(function(error) { + alert("Error removing document: ", error) + }) +} + +firebase.auth().onAuthStateChanged(function(user) { + list(user) +}) + diff --git a/public/old/it1/bibliotek/index.html b/public/old/it1/bibliotek/index.html new file mode 100644 index 0000000..9e6967d --- /dev/null +++ b/public/old/it1/bibliotek/index.html @@ -0,0 +1,48 @@ + + + + Firebase basert bibliotek + + + + + + + + + + + + + +
+
+
+
+
+
+
+ + + + +
+ Legg til +
+
+

 

+
+ Hent bøker +
+
+
+ + + \ No newline at end of file diff --git a/public/old/it1/bruker/index.html b/public/old/it1/bruker/index.html new file mode 100644 index 0000000..fcc424f --- /dev/null +++ b/public/old/it1/bruker/index.html @@ -0,0 +1,30 @@ + + + + Firebase basert bibliotek + + + + + + + + + + + + +
+
+
+ + +
+ Logg inn +
+
+
+
+ + + \ No newline at end of file diff --git a/public/old/it1/css/form.css b/public/old/it1/css/form.css new file mode 100644 index 0000000..81d7267 --- /dev/null +++ b/public/old/it1/css/form.css @@ -0,0 +1,28 @@ + +.top { + margin-top: 9vh; +} + +#status { + margin-top: 1vh; +} + +#form > div > * { + margin-bottom: 1vh; +} + +#form > div > label { + margin-bottom: 0.33vh; +} + +.form-control { + background-color: #333; + border-color: #222; + color: lime; +} +.form-control:focus { + background-color: #555; + border-color: #333; + color: lime; +} + diff --git a/public/old/it1/css/gjestebok.css b/public/old/it1/css/gjestebok.css new file mode 100644 index 0000000..dcd6d69 --- /dev/null +++ b/public/old/it1/css/gjestebok.css @@ -0,0 +1,5 @@ + +.kommentar { + font-size: 1.1rem; + word-wrap: break-word; +} diff --git a/public/old/it1/gjestebok/gjestebok.js b/public/old/it1/gjestebok/gjestebok.js new file mode 100644 index 0000000..86ba9a4 --- /dev/null +++ b/public/old/it1/gjestebok/gjestebok.js @@ -0,0 +1,81 @@ + +var db = firebase.firestore() + +class Comment { + constructor(name, message, id=0) { + this.name = name, + this.message = message, + this.cfid = id + } + toString() { + return this.name+': '+this.message + } + toHtml(elm) { + elm.append('

') + $($('.kommentar')[$('.kommentar').length-1]).text(this.toString()) + firebase.auth().currentUser?$($('.kommentar')[$('.kommentar').length-1]).append('   Slett'):undefined + } +} + +commentConverter = { + toFirestore: function(comment) { + return { + navn: comment.name, + melding: comment.message + } + }, + fromFirestore: function(snapshot, options) { + const data = snapshot.data(options) + return new Comment( + data.navn, + data.melding, + snapshot.id + ) + } +} + +var list = function() { + db.collection('gjestebok') + .withConverter(commentConverter) + .get() + .then(function(query) { + $('#kommentarer').html('
') + query.forEach(function(doc) { + book = doc.data() + book.toHtml($('#kommentarer')) + }) + }).catch(function(error) { + $('#status').html('

Kunne ikke hente kommentarer!


'+error.message+'

') + $('#status').css('color', 'red') + }) +} + +var add = function() { + db.collection("gjestebok") + .withConverter(commentConverter) + .add(new Comment( + $('#navn')[0].value, + $('#melding')[0].value + )).then(function() { + $('#status').html('

La til melding med navn '+$('#navn')[0].value+'!

') + $('#status').css('color', 'green') + $('#kommentarer').html('') + list() + }).catch(function() { + $('#status').html('

Problem med å legge til melding med navn '+$('#navn')[0].value+'!

') + $('#status').css('color', 'red') + }) +} + +var remove = function(id) { + db.collection("gjestebok").doc(id) + .delete().then(function() { + $('#kommentarer').html('') + list() + }).catch(function(error) { + alert("Error removing document: ", error) + }) +} + +list() + diff --git a/public/old/it1/gjestebok/index.html b/public/old/it1/gjestebok/index.html new file mode 100644 index 0000000..fe31032 --- /dev/null +++ b/public/old/it1/gjestebok/index.html @@ -0,0 +1,38 @@ + + + + Firebase basert gjestebok + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+ Legg til +
+
+

 

+
+ +
+
+

+
+ + + \ No newline at end of file diff --git a/public/old/it1/index.html b/public/old/it1/index.html new file mode 100644 index 0000000..b2f7794 --- /dev/null +++ b/public/old/it1/index.html @@ -0,0 +1,32 @@ + + + + Simple firebase stuff + + + + + + + + + + + + +
+

Denne siden inneholder ting jeg har laget med firebase i IT1!

+
+ +
+

There is also this here some introductary javascript I wrote for the same class hosted by pythonanywhere.

+
+ + diff --git a/public/old/it1/js/auth.js b/public/old/it1/js/auth.js new file mode 100644 index 0000000..b634540 --- /dev/null +++ b/public/old/it1/js/auth.js @@ -0,0 +1,18 @@ + +var signin = function() { + firebase.auth() + .signInWithEmailAndPassword($('#mail')[0].value, $('#password')[0].value) + .then(function() { + document.location.href = "/it1/" + }).catch(function(error) { + $('#status').html('

Kunne ikke logge inn som '+$('#mail')[0].value+'!

'+error.code+': '+error.message+'

') + $('#status').css('color', 'red') + }) +} + +$(document).keydown(function(e) { + if (e.which == 13){ + $("#login").click() + } +}) + diff --git a/public/old/it1/js/converters/bok.js b/public/old/it1/js/converters/bok.js new file mode 100644 index 0000000..12f28b1 --- /dev/null +++ b/public/old/it1/js/converters/bok.js @@ -0,0 +1,52 @@ + +class Book { + constructor(title, author, publisher, rating, published, id=0) { + this.cfid = id + this.title = title + this.author = author + this.publisher = publisher + this.rating = rating + this.published = published + } + toString() { + return this.title+' av '+this.author+', terningkast '+this.rating+', utgitt '+this.published.toString().slice(0,15)+', forlag; '+this.publisher + } + toHtml(elm) { + let span = function(selector, string, p, color='red') { + $($(selector)[$(selector).length-1]).append('') + $($(selector+' > span')[$(selector+' > span').length-1]).text(string) + $($(selector)[$(selector).length-1]).append(p) + } + elm.append('

') + span('.book', this.title, ' av ') + span('.book', this.author, ', terningkast ') + span('.book', this.rating, ', utgitt ') + span('.book', this.published.toString().slice(0,15), ', forlag: ', 'green') + span('.book', this.publisher, firebase.auth().currentUser?'   Slett':'', 'yellow') + } +} + +bookConverter = { + toFirestore: function(book) { + let millis = Date.parse(book.published) + return { + tittel: book.title, + forfatter: book.author, + forlag: book.publisher, + terningkast: book.rating, + utgitt: new firebase.firestore.Timestamp(millis/1000, 0) + } + }, + fromFirestore: function(snapshot, options) { + const data = snapshot.data(options) + return new Book( + data.tittel, + data.forfatter, + data.forlag, + data.terningkast, + data.utgitt.toDate(), + snapshot.id + ) + } +} + diff --git a/public/old/it1/js/converters/kommentar.js b/public/old/it1/js/converters/kommentar.js new file mode 100644 index 0000000..1c2142f --- /dev/null +++ b/public/old/it1/js/converters/kommentar.js @@ -0,0 +1,34 @@ + +class Comment { + constructor(name, message, id=0) { + this.name = name, + this.message = message, + this.cfid = id + } + toString() { + return this.name+': '+this.message + } + toHtml(elm) { + elm.append('

') + $($('.kommentar')[$('.kommentar').length-1]).text(this.toString()) + firebase.auth().currentUser?$($('.kommentar')[$('.kommentar').length-1]).append('   Slett'):undefined + } +} + +commentConverter = { + toFirestore: function(comment) { + return { + navn: comment.name, + melding: comment.message + } + }, + fromFirestore: function(snapshot, options) { + const data = snapshot.data(options) + return new Comment( + data.navn, + data.melding, + snapshot.id + ) + } +} + diff --git a/public/old/it1/js/init-firebase.js b/public/old/it1/js/init-firebase.js new file mode 100644 index 0000000..703589d --- /dev/null +++ b/public/old/it1/js/init-firebase.js @@ -0,0 +1,10 @@ + +firebase.initializeApp({ + apiKey: "AIzaSyAhU3F-De17VAsUgpRjj25f48QiXycorD4", + authDomain: "it1-heimdal-vgs.firebaseapp.com", + databaseURL: "https://it1-heimdal-vgs.firebaseio.com", + projectId: "it1-heimdal-vgs", + storageBucket: "it1-heimdal-vgs.appspot.com", + messagingSenderId: "206703382262", + appId: "1:206703382262:web:be48f32d11a15fa28f26d7" +}) diff --git a/public/old/it1/js/navbar.js b/public/old/it1/js/navbar.js new file mode 100644 index 0000000..636faa3 --- /dev/null +++ b/public/old/it1/js/navbar.js @@ -0,0 +1,43 @@ + +$('#navbar').parent().html(` +`) + +var signout = function() { + firebase.auth() + .signOut() + .then(function() { + document.location.href = '/it1/' + }).catch(function(error) { + alert('could not log out: '+error.message) + }) +} + +firebase.auth().onAuthStateChanged(function(user) { + if (user) { + $('#login-btn').attr('href', 'javascript: signout()') + $('#login-btn').html('Logout') + } else { + $('#login-btn').attr('href', '/it1/bruker/') + $('#login-btn').html('Login') + } +}) + +for (var i = 0; i < $('#navbar').children().length; i++) { + $('#navbar').children().css('color', 'springgreen') +} + diff --git a/public/old/it1/main.css b/public/old/it1/main.css new file mode 100644 index 0000000..39da3f6 --- /dev/null +++ b/public/old/it1/main.css @@ -0,0 +1,19 @@ + +body { + background-color: rgb(24, 26, 27); + color: rgb(218, 215, 210); +} + +#content { + margin: 2vh; + margin-left: 13vw; + margin-right: 42.0vw; +} + +li.right > ul { + align-content: right; +} + +#oppgaver { + margin-left: 3vh; +} diff --git a/public/old/it1/main.js b/public/old/it1/main.js new file mode 100644 index 0000000..e69de29 diff --git a/public/old/it1/navbar/navbar.css b/public/old/it1/navbar/navbar.css new file mode 100644 index 0000000..8c800b6 --- /dev/null +++ b/public/old/it1/navbar/navbar.css @@ -0,0 +1,4 @@ + +li.right > ul { /* TODO: FIX! */ + align-content: right; +} diff --git a/public/old/it1/navbar/navbar.html b/public/old/it1/navbar/navbar.html new file mode 100644 index 0000000..f6a91ee --- /dev/null +++ b/public/old/it1/navbar/navbar.html @@ -0,0 +1,33 @@ + + + + Navbar for iframe + + + + + + + + \ No newline at end of file diff --git a/public/old/it1/smittestopp/corona.css b/public/old/it1/smittestopp/corona.css new file mode 100644 index 0000000..7859cbf --- /dev/null +++ b/public/old/it1/smittestopp/corona.css @@ -0,0 +1,19 @@ + +table, th, td { + border: 2px solid gray; +} +th, td { + padding: 0.3rem; +} +table { + width: 100%; +} + +#title { + margin-left: 3vw; + margin-bottom: 4rem; + margin-top: 4rem; +} +footer { + margin-top: 5rem; +} diff --git a/public/old/it1/smittestopp/index.html b/public/old/it1/smittestopp/index.html new file mode 100644 index 0000000..517ee58 --- /dev/null +++ b/public/old/it1/smittestopp/index.html @@ -0,0 +1,54 @@ + + + + Problemer med smittestopp + + + + + + +
+

Positive og negative sider med apper som smittestopp

+
+
+

+ Et problem for mange med slike apper er personvern. Selvfølgelig er data i de fleste tilfeller anonymisert ved at appen genererer en tilfeldig ID som brukes for å knytte data til en spesifikk person. Problemet hær er at dataen er bare anonym om dataen faktisk blir slettet i etterkant, men når er det totalt over? Det kommer til å ta lang tid før vi er nær utrydning av viruset og en kan alltids argumentere at slike systemer skal brukes til andre formål som andre sykdommer og kriminalitet. +

+

+ Smittestopp vi nå har i Norge skal slette data etter 30 dager, men det er selvfølgelig om dataene ikke kommer på avveie. Denne appen har derimot andre problemer som konstant oppdatering av både bluetooth og GPS som fører til høy batteribruk. Det er også ett problem med at tjenesten sender SMS for varsling etter en har meldt seg inn. Som har ført til at mange har fått meldinger tilsynelatende fra FHI som fører brukere til nettsider med svindel. +

+

+ Simula som utvikler smittestopp, vil heller ikke gi ut kildekoden av sikkerhets bekymringer. Jeg ser tanken, men det har vært mange tilfeller hvor lukket kildekode har ført til at det er mange store problemer med en app. I smittestopp sitt tilfelle er det lite som kan gå galt når det eneste appen skal gjøre er å samle data, men det kommer sikker mer på dette om ikke altfor lenge. +

+

+ Det siste store problemet med smittestopp og liknende apper er testing. Overvåkning av hvem som er i kontakt med hverandre funker bare om de aller fleste som blir syke med SARS-CoV-2 (corona viruset) faktisk får det påvist. +

+
+
+ + + + + + + + + + + + +
MotFor
PersonværnForebygge smitte
Batteribruk
+
+
+ +
+ + \ No newline at end of file diff --git a/public/old/main.css b/public/old/main.css new file mode 100644 index 0000000..312ef6d --- /dev/null +++ b/public/old/main.css @@ -0,0 +1,11 @@ + +body { + background-color: rgb(24, 26, 27); + color: lime; +} + +div#content > * { + padding: 2vh; + margin: 4vh; +} + diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..978adf7 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,19 @@ +User-agent: * +Allow: /about/ +Allow: /categories/ +Allow: /no/categories/ +Allow: /tags/info/ +Allow: /no/tags/info/ +Allow: /categories/meta/ +Allow: /tags/meta/ +Allow: /no/categories/meta/ +Allow: /no/tags/meta/ +Allow: /no/about/ +Allow: /series/ +Allow: /no/series/ +Allow: /blog/ +Allow: /no/blog/ +Allow: /tags/ +Allow: /no/tags/ +Allow: /no/ +Allow: / \ No newline at end of file diff --git a/public/series/index.html b/public/series/index.html new file mode 100644 index 0000000..565de9d --- /dev/null +++ b/public/series/index.html @@ -0,0 +1,76 @@ + + + + + + + + + + + +Sivert Does Stuff Online! + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Series

+
+
    +
+
+
+
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/public/series/index.xml b/public/series/index.xml new file mode 100644 index 0000000..4fd7b12 --- /dev/null +++ b/public/series/index.xml @@ -0,0 +1 @@ +Series on Sivert Does Stuff Online!/series/Recent content in Series on Sivert Does Stuff Online!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3 \ No newline at end of file diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..41b0ca4 --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1 @@ +no/sitemap.xmlnl/sitemap.xmlen/sitemap.xml \ No newline at end of file diff --git a/public/tags/index.html b/public/tags/index.html new file mode 100644 index 0000000..4b1ed57 --- /dev/null +++ b/public/tags/index.html @@ -0,0 +1,90 @@ + + + + + + + + + + + +Sivert Does Stuff Online! + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Tags

+
+ +
+
+
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/public/tags/index.xml b/public/tags/index.xml new file mode 100644 index 0000000..c3dcfc1 --- /dev/null +++ b/public/tags/index.xml @@ -0,0 +1 @@ +Tags on Sivert Does Stuff Online!/tags/Recent content in Tags on Sivert Does Stuff Online!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3Info/tags/info/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/tags/info/Meta/tags/meta/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/tags/meta/ \ No newline at end of file diff --git a/public/tags/info/index.html b/public/tags/info/index.html new file mode 100644 index 0000000..588d1a3 --- /dev/null +++ b/public/tags/info/index.html @@ -0,0 +1,102 @@ + + + + + + + + + + + +Sivert Does Stuff Online! - Info + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Info

+
+
    +
  • +
    +
    +

    About

    +This webpage is my portfolio webpage and blog. +It’s build with hugo and hosted on github.io with GitHub Pages! +
    +
    +
  • +
  • +
    +
    +

    Siverts Tech Adventure Blog

    +Here you are welcome to take a look at all my blog posts! +And be sure to add the RSS feed to your news reader! ;) +
    +
    +
  • +
  • +
    +
    +

    Welcome!

    +So I guess I’ve finally got to updating my github.io site. Nice! +
    +
    +
  • +
+
+
+
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/public/tags/info/index.xml b/public/tags/info/index.xml new file mode 100644 index 0000000..b9ed3d4 --- /dev/null +++ b/public/tags/info/index.xml @@ -0,0 +1,3 @@ +Info on Sivert Does Stuff Online!/tags/info/Recent content in Info on Sivert Does Stuff Online!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3About/about/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/about/This webpage is my portfolio webpage and blog. +It&rsquo;s build with hugo and hosted on github.io with GitHub Pages!Siverts Tech Adventure Blog/blog/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/blog/Here you are welcome to take a look at all my blog posts! +And be sure to add the RSS feed to your news reader! ;)Welcome!/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/So I guess I&rsquo;ve finally got to updating my github.io site. Nice! \ No newline at end of file diff --git a/public/tags/meta/index.html b/public/tags/meta/index.html new file mode 100644 index 0000000..103754a --- /dev/null +++ b/public/tags/meta/index.html @@ -0,0 +1,102 @@ + + + + + + + + + + + +Sivert Does Stuff Online! - Meta + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Meta

+
+
    +
  • +
    +
    +

    About

    +This webpage is my portfolio webpage and blog. +It’s build with hugo and hosted on github.io with GitHub Pages! +
    +
    +
  • +
  • +
    +
    +

    Siverts Tech Adventure Blog

    +Here you are welcome to take a look at all my blog posts! +And be sure to add the RSS feed to your news reader! ;) +
    +
    +
  • +
  • +
    +
    +

    Welcome!

    +So I guess I’ve finally got to updating my github.io site. Nice! +
    +
    +
  • +
+
+
+
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/public/tags/meta/index.xml b/public/tags/meta/index.xml new file mode 100644 index 0000000..951ca03 --- /dev/null +++ b/public/tags/meta/index.xml @@ -0,0 +1,3 @@ +Meta on Sivert Does Stuff Online!/tags/meta/Recent content in Meta on Sivert Does Stuff Online!Hugo -- gohugo.iogmail@sivert.pw (Sivert V. Sæther)gmail@sivert.pw (Sivert V. Sæther)GPL-3About/about/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/about/This webpage is my portfolio webpage and blog. +It&rsquo;s build with hugo and hosted on github.io with GitHub Pages!Siverts Tech Adventure Blog/blog/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/blog/Here you are welcome to take a look at all my blog posts! +And be sure to add the RSS feed to your news reader! ;)Welcome!/Mon, 01 Jan 0001 00:00:00 +0000gmail@sivert.pw (Sivert V. Sæther)/So I guess I&rsquo;ve finally got to updating my github.io site. Nice! \ No newline at end of file