commit 2d29261576b8d028846b01bf657086347dd3a866 Author: Akumatic Date: Wed Sep 11 20:04:31 2024 +0200 Initial setup diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..22498ab --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/stack"] + path = themes/stack + url = https://github.com/CaiJimmy/hugo-theme-stack.git diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/assets/brand-reddit.svg:Zone.Identifier b/assets/brand-reddit.svg:Zone.Identifier new file mode 100644 index 0000000..a45e1ac --- /dev/null +++ b/assets/brand-reddit.svg:Zone.Identifier @@ -0,0 +1,2 @@ +[ZoneTransfer] +ZoneId=3 diff --git a/assets/icons/brand-reddit.svg b/assets/icons/brand-reddit.svg new file mode 100644 index 0000000..8e7dbe3 --- /dev/null +++ b/assets/icons/brand-reddit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/img/avatar.png b/assets/img/avatar.png new file mode 100644 index 0000000..04728d2 Binary files /dev/null and b/assets/img/avatar.png differ diff --git a/assets/jsconfig.json b/assets/jsconfig.json new file mode 100644 index 0000000..d2c571d --- /dev/null +++ b/assets/jsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "*": [ + "../themes/stack/assets/*" + ] + } + } +} \ No newline at end of file diff --git a/config/_default/config.toml b/config/_default/config.toml new file mode 100644 index 0000000..db2017a --- /dev/null +++ b/config/_default/config.toml @@ -0,0 +1,14 @@ +# Change baseurl before deploy +baseurl = "https://www.akumatic.eu" +theme = "stack" + +# Theme i18n support +# Available values: en, fr, id, ja, ko, pt-br, zh-cn, zh-tw, es, de, nl, it, th, el, uk, ar +defaultContentLanguage = "en" + +# Set hasCJKLanguage to true if DefaultContentLanguage is in [zh-cn ja ko] +# This will make .Summary and .WordCount behave correctly for CJK languages. +hasCJKLanguage = false + +[pagination] +pagerSize = 5 \ No newline at end of file diff --git a/config/_default/languages.toml b/config/_default/languages.toml new file mode 100644 index 0000000..c97efaf --- /dev/null +++ b/config/_default/languages.toml @@ -0,0 +1,31 @@ +[en] +languageName = "English" +languagedirection = "ltr" +title = "Akumatic" +weight = 1 + +[en.params.sidebar] +subtitle = "" + +[en.params.footer] +customText = "" + +[en.params.dateFormat] +published = "Jan 02, 2006" +lastUpdated = "Jan 02, 2006" + +[de] +languageName = "Deutsch" +languagedirection = "ltr" +title = "Akumatic" +weight = 2 + +[de.params.sidebar] +subtitle = "" + +[de.params.footer] +customText = "" + +[de.params.dateFormat] +published = "02. January 2006" +lastUpdated = "02. January 2006" diff --git a/config/_default/markup.toml b/config/_default/markup.toml new file mode 100644 index 0000000..98928e0 --- /dev/null +++ b/config/_default/markup.toml @@ -0,0 +1,26 @@ +# Markdown renderer configuration +[goldmark.renderer] +unsafe = true + +[goldmark.extensions.passthrough] +enable = true + +# LaTeX math support +# https://gohugo.io/content-management/mathematics/ +[goldmark.extensions.passthrough.delimiters] +block = [['\[', '\]'], ['$$', '$$']] +inline = [['\(', '\)']] + +[tableOfContents] +endLevel = 4 +ordered = true +startLevel = 2 + +[highlight] +noClasses = false +codeFences = true +guessSyntax = true +lineNoStart = 1 +lineNos = true +lineNumbersInTable = true +tabWidth = 4 \ No newline at end of file diff --git a/config/_default/menu.toml b/config/_default/menu.toml new file mode 100644 index 0000000..c0e078a --- /dev/null +++ b/config/_default/menu.toml @@ -0,0 +1,24 @@ +# Configure main menu and social menu +#[[main]] +#identifier = "home" +#name = "Home" +#url = "/" +#[main.params] +#icon = "home" +#newtab = true + +[[social]] +identifier = "github" +name = "GitHub" +url = "https://github.com/Akumatic" + +[social.params] +icon = "brand-github" + +[[social]] +identifier = "reddit" +name = "Reddit" +url = "https://www.reddit.com/user/aku-matic/" + +[social.params] +icon = "brand-reddit" diff --git a/config/_default/params.toml b/config/_default/params.toml new file mode 100644 index 0000000..c601dbd --- /dev/null +++ b/config/_default/params.toml @@ -0,0 +1,90 @@ +# Pages placed under these sections will be shown on homepage and archive page. +mainSections = ["post"] +# Output page's full content in RSS. +rssFullContent = true +favicon = "/favicon.png" + +[footer] +since = "" + +[dateFormat] +published = "Jan 02, 2006" +lastUpdated = "Jan 02, 2006 15:04 MST" + +[sidebar] +compact = "false" +#emoji = "👾" + +[sidebar.avatar] +enabled = true +local = true +src = "img/avatar.png" + +[article] +headingAnchor = false +math = false +readingTime = true + +[article.license] +enabled = true +default = "Licensed under CC BY-NC-SA 4.0" + +## Widgets +[[widgets.homepage]] +type = "search" + +[[widgets.homepage]] +type = "archives" + +[widgets.homepage.params] +limit = 5 + +[[widgets.homepage]] +type = "categories" + +[widgets.homepage.params] +limit = 10 + +[[widgets.homepage]] +type = "tag-cloud" + +[widgets.homepage.params] +limit = 10 + +[[widgets.page]] +type = "toc" + +[opengraph.twitter] +site = "" +card = "summary_large_image" + +[defaultImage.opengraph] +enabled = false +local = false +src = "" + +[colorScheme] +toggle = true +default = "auto" + +[imageProcessing.cover] +enabled = true + +[imageProcessing.content] +enabled = true + +## Comments +[comments] +enabled = true +provider = "giscus" + +[comments.giscus] +repo = "akumatic/blog" +repoID = "R_kgDOMwMYrA" +category = "Comments" +categoryID = "DIC_kwDOMwMYrM4CiY1e" +mapping = "pathname" +lightTheme = "light" +darkTheme = "dark_dimmed" +reactionsEnabled = 1 +emitMetadata = 0 diff --git a/config/_default/permalinks.toml b/config/_default/permalinks.toml new file mode 100644 index 0000000..2499a7e --- /dev/null +++ b/config/_default/permalinks.toml @@ -0,0 +1,3 @@ +# Permalinks format of each content section +post = "/p/:slug/" +page = "/:slug/" \ No newline at end of file diff --git a/config/_default/related.toml b/config/_default/related.toml new file mode 100644 index 0000000..ae9f69a --- /dev/null +++ b/config/_default/related.toml @@ -0,0 +1,12 @@ +# Related contents configuration +includeNewer = true +threshold = 60 +toLower = false + +[[indices]] +name = "tags" +weight = 100 + +[[indices]] +name = "categories" +weight = 200 diff --git a/content/_index.de.md b/content/_index.de.md new file mode 100644 index 0000000..02f9c2e --- /dev/null +++ b/content/_index.de.md @@ -0,0 +1,8 @@ +--- +menu: + main: + name: Home + weight: 1 + params: + icon: home +--- diff --git a/content/_index.en.md b/content/_index.en.md new file mode 100644 index 0000000..02f9c2e --- /dev/null +++ b/content/_index.en.md @@ -0,0 +1,8 @@ +--- +menu: + main: + name: Home + weight: 1 + params: + icon: home +--- diff --git a/content/categories/os/_index.de.md b/content/categories/os/_index.de.md new file mode 100644 index 0000000..345c71c --- /dev/null +++ b/content/categories/os/_index.de.md @@ -0,0 +1,5 @@ +--- +title: "Betriebssysteme" +description: "Beiträge über Betriebssysteme" +slug: "os" +--- diff --git a/content/categories/os/_index.en.md b/content/categories/os/_index.en.md new file mode 100644 index 0000000..a50abfa --- /dev/null +++ b/content/categories/os/_index.en.md @@ -0,0 +1,5 @@ +--- +title: "Operating Systems" +description: "Posts about operating systems" +slug: "os" +--- diff --git a/content/page/archives/index.de.md b/content/page/archives/index.de.md new file mode 100644 index 0000000..07e226c --- /dev/null +++ b/content/page/archives/index.de.md @@ -0,0 +1,10 @@ +--- +title: "Archiv" +layout: "archives" +slug: "archives" +menu: + main: + weight: 2 + params: + icon: archives +--- diff --git a/content/page/archives/index.en.md b/content/page/archives/index.en.md new file mode 100644 index 0000000..31ed64d --- /dev/null +++ b/content/page/archives/index.en.md @@ -0,0 +1,10 @@ +--- +title: "Archives" +layout: "archives" +slug: "archives" +menu: + main: + weight: 2 + params: + icon: archives +--- diff --git a/content/page/search/index.de.md b/content/page/search/index.de.md new file mode 100644 index 0000000..21e03b9 --- /dev/null +++ b/content/page/search/index.de.md @@ -0,0 +1,13 @@ +--- +title: "Suche" +slug: "search" +layout: "search" +outputs: + - html + - json +menu: + main: + weight: 3 + params: + icon: search +--- diff --git a/content/page/search/index.en.md b/content/page/search/index.en.md new file mode 100644 index 0000000..2a4bff1 --- /dev/null +++ b/content/page/search/index.en.md @@ -0,0 +1,13 @@ +--- +title: "Search" +slug: "search" +layout: "search" +outputs: + - html + - json +menu: + main: + weight: 3 + params: + icon: search +--- diff --git a/content/post/win11-local-account/img/available_link.de.png b/content/post/win11-local-account/img/available_link.de.png new file mode 100644 index 0000000..88dff12 Binary files /dev/null and b/content/post/win11-local-account/img/available_link.de.png differ diff --git a/content/post/win11-local-account/img/available_link.en.png b/content/post/win11-local-account/img/available_link.en.png new file mode 100644 index 0000000..c57afdf Binary files /dev/null and b/content/post/win11-local-account/img/available_link.en.png differ diff --git a/content/post/win11-local-account/img/missing_link.de.png b/content/post/win11-local-account/img/missing_link.de.png new file mode 100644 index 0000000..cd9787a Binary files /dev/null and b/content/post/win11-local-account/img/missing_link.de.png differ diff --git a/content/post/win11-local-account/img/missing_link.en.png b/content/post/win11-local-account/img/missing_link.en.png new file mode 100644 index 0000000..f888580 Binary files /dev/null and b/content/post/win11-local-account/img/missing_link.en.png differ diff --git a/content/post/win11-local-account/img/win11_local_account_continue_de.png:Zone.Identifier b/content/post/win11-local-account/img/win11_local_account_continue_de.png:Zone.Identifier new file mode 100644 index 0000000..3863e49 --- /dev/null +++ b/content/post/win11-local-account/img/win11_local_account_continue_de.png:Zone.Identifier @@ -0,0 +1,4 @@ +[ZoneTransfer] +ZoneId=3 +ReferrerUrl=https://www.akumatic.eu/wp-admin/post.php?post=152&action=edit +HostUrl=https://www.akumatic.eu/wp-content/uploads/2024/04/win11_local_account_continue_de.png diff --git a/content/post/win11-local-account/img/win11_local_account_continue_en.png:Zone.Identifier b/content/post/win11-local-account/img/win11_local_account_continue_en.png:Zone.Identifier new file mode 100644 index 0000000..f8caeea --- /dev/null +++ b/content/post/win11-local-account/img/win11_local_account_continue_en.png:Zone.Identifier @@ -0,0 +1,4 @@ +[ZoneTransfer] +ZoneId=3 +ReferrerUrl=https://www.akumatic.eu/wp-admin/post.php?post=161&action=edit +HostUrl=https://www.akumatic.eu/wp-content/uploads/2024/04/win11_local_account_continue_en.png diff --git a/content/post/win11-local-account/img/win11_local_account_nocontinue_de.png:Zone.Identifier b/content/post/win11-local-account/img/win11_local_account_nocontinue_de.png:Zone.Identifier new file mode 100644 index 0000000..c1874df --- /dev/null +++ b/content/post/win11-local-account/img/win11_local_account_nocontinue_de.png:Zone.Identifier @@ -0,0 +1,4 @@ +[ZoneTransfer] +ZoneId=3 +ReferrerUrl=https://www.akumatic.eu/wp-admin/post.php?post=155&action=edit +HostUrl=https://www.akumatic.eu/wp-content/uploads/2024/04/win11_local_account_nocontinue_de.png diff --git a/content/post/win11-local-account/img/win11_local_account_nocontinue_en.png:Zone.Identifier b/content/post/win11-local-account/img/win11_local_account_nocontinue_en.png:Zone.Identifier new file mode 100644 index 0000000..af4cb8d --- /dev/null +++ b/content/post/win11-local-account/img/win11_local_account_nocontinue_en.png:Zone.Identifier @@ -0,0 +1,4 @@ +[ZoneTransfer] +ZoneId=3 +ReferrerUrl=https://www.akumatic.eu/wp-admin/post.php?post=160&action=edit +HostUrl=https://www.akumatic.eu/wp-content/uploads/2024/04/win11_local_account_nocontinue_en.png diff --git a/content/post/win11-local-account/index.de.md b/content/post/win11-local-account/index.de.md new file mode 100644 index 0000000..629e4b0 --- /dev/null +++ b/content/post/win11-local-account/index.de.md @@ -0,0 +1,26 @@ +--- +title: Windows 11 mit lokalem Konto einrichten +date: 2024-04-10 +description: | + Das Setup von Windows 11 verhindert, die Einrichtung ohne eine aktive Internetverbindung fortzusetzen. Mit einem einfachen Trick kann man dies umgehen und weiterhin einen lokalen Account anlegen. +categories: + - os +--- + +Schon seit Windows 10 strebt Microsoft an, dass der Rechner mit einem Microsoft-Account benutzt wird. Während des Setups konnte man kein lokales Konto einrichten, wenn man mit dem Internet verbunden war. Um die Option für das lokale Konto angezeigt zu bekomen, musste man also offline bleiben. + +Im aktuellen Setup von Windows 11 scheint dies nichts mehr zu bringen. Um im Setup fortfahren zu können, fordert Microsoft eine Internetverbindung. + +![Ohne Internetverbindung kann das Setup nicht fortgesetzt werden.](img/missing_link.de.png) + +Auch wenn es nicht mehr so trivial wie früher ist, lässt sich diese Anforderung immer noch umgehen. Hierfür kann im Setup mit der Tastenkombination STRG + F10 eine Konsole geöffnet werden. Dort gibt man folgenden Befehl ein und bestätigt ihn: + +``` +OOBE\BYPASSNRO +``` + +Anschließend startet das System neu. Folgt man dem Assistenten wieder bis zum vorherigen Schritt, ist nun die Option "Ich habe kein Internet" verfügbar: + +![Nach dem Neustart ist eine neue Funktion sichtbar, um auch ohne Internet forzufahren.](img/available_link.de.png) + +Dadurch kann man mit der "eingeschränkter Einrichtung" fortfahren und ein lokales Konto anlegen. diff --git a/content/post/win11-local-account/index.en.md b/content/post/win11-local-account/index.en.md new file mode 100644 index 0000000..db27096 --- /dev/null +++ b/content/post/win11-local-account/index.en.md @@ -0,0 +1,26 @@ +--- +title: Setup Windows 11 with local account +date: 2024-04-10 +description: | + The Windows 11 setup prevents you from continuing the setup without an active Internet connection. This can be bypassed with a simple trick to still be able to create a local account +categories: + - os +--- + +Since Windows 10, Microsoft has been aiming for the computer to be used with a Microsoft account. During setup, it was not possible to set up a local account when connected to the internet. In order to see the option for the local account, you had to remain offline. + +This no longer seems to work in the current Windows 11 setup. Microsoft requires an Internet connection to continue with the setup. + +![The setup cannot be continued without an Internet connection.](img/missing_link.en.png) + +Even if it is no longer as trivial as it used to be, this requirement can still be bypassed. To do this, a console can be opened in Setup by pressing CTRL + F10. Enter the following command and confirm: + +``` +OOBE\BYPASSNRO +``` + +The system then restarts. If you follow the wizard back to the previous step, the option "I don't have internet" is now available: + +![After restarting, a new function is visible to continue without an Internet connection.](img/available_link.en.png) + +This allows you to continue with the “restricted setup” and create a local account. diff --git a/static/favicon.png b/static/favicon.png new file mode 100644 index 0000000..cb32a86 Binary files /dev/null and b/static/favicon.png differ diff --git a/themes/stack b/themes/stack new file mode 160000 index 0000000..048a000 --- /dev/null +++ b/themes/stack @@ -0,0 +1 @@ +Subproject commit 048a000f1701a1bd75df54ae2a0f8288f07fbc88