add all required files
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
resources
|
||||
public
|
0
.hugo_build.lock
Normal file
0
.hugo_build.lock
Normal file
@@ -2,4 +2,7 @@
|
||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
date = {{ .Date }}
|
||||
draft = true
|
||||
author = 'Janis Hutz'
|
||||
tags = [ 'Linux', 'Windows', 'Development', 'General' ]
|
||||
categories = [ 'Guides', 'Tutorials', 'Rants' ]
|
||||
+++
|
||||
|
10
assets/jsconfig.json
Normal file
10
assets/jsconfig.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"*": [
|
||||
"../themes/DoIt/assets/*"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
17
content/posts/2023/11/easy-ml-linux-vm-setup.md
Normal file
17
content/posts/2023/11/easy-ml-linux-vm-setup.md
Normal file
@@ -0,0 +1,17 @@
|
||||
+++
|
||||
title = 'Easy ML Linux VM Setup'
|
||||
date = 2023-11-21T10:47:31+01:00
|
||||
draft = true
|
||||
author = 'Janis Hutz'
|
||||
tags = [ 'Linux', 'Windows', 'MacOS', 'Development' ]
|
||||
categories = [ 'Tutorials', 'Rants' ]
|
||||
+++
|
||||
|
||||
Developing Software on Windows is a massive pain. This is why I have created a guide for beginners that are looking to start learning machine learning and don't have a proper Operating System to do serious ML work. You may, depending on your level of commitment also install this OS as it is as Dual-Boot, I will run you through doing that down below.
|
||||
|
||||
# Installation of a VM-Hypervisor
|
||||
*If you want to install this as a Dual-Boot setup, you may skip ahead*
|
||||
|
||||
On Windows, if you have the pro-edition, a Hypervisor comes already with the OS, but I don't recommend using Hyper-V and opt for VMWare Workstation or QEMU instead. For this guide we will be using VMWare Workstation Player as it is much easier to use. Before we get started though, please enable VT-x or AMD-V depending on if you have an Intel or AMD CPU. You can do that by heading into your device's BIOS and enabling it there. You might need to look up how this works on your device, as every BIOS is different. If you are unaware of how to get into the BIOS, the easiest way to do this on Windows is by holding down shift whilst clicking onto "Restart" and then, once it comes up, clicking onto Troubleshoot and then UEFI-Firmware settings and then restart. This will take you straight to the BIOS without having to spam the BIOS access key on boot.
|
||||
|
||||
With that setting enabled, it is now time to download and install VMWare Workstation Player from the official website and then following the installation prompts.
|
10
content/posts/2023/11/start.md
Normal file
10
content/posts/2023/11/start.md
Normal file
@@ -0,0 +1,10 @@
|
||||
+++
|
||||
title = 'Welcome to blog.janishutz.com'
|
||||
date = 2023-11-21T10:33:29+01:00
|
||||
draft = false
|
||||
author = 'Janis Hutz'
|
||||
tags = [ 'introduction' ]
|
||||
categories = [ 'introduction' ]
|
||||
+++
|
||||
|
||||
<!-- TODO: Add title image -->
|
4
data/_authors/janis.toml
Normal file
4
data/_authors/janis.toml
Normal file
@@ -0,0 +1,4 @@
|
||||
author = "janis"
|
||||
name = "Janis Hutz"
|
||||
title = "title goes here"
|
||||
bio = "Bio goes here"
|
49
hugo.toml
49
hugo.toml
@@ -1,3 +1,48 @@
|
||||
baseURL = 'https://example.org/'
|
||||
baseURL = 'https://blog.janishutz.com/'
|
||||
languageCode = 'en-us'
|
||||
title = 'My New Hugo Site'
|
||||
title = 'blog.janishutz.com'
|
||||
theme = 'DoIt'
|
||||
# post pagination
|
||||
paginate = "25"
|
||||
# post excerpt
|
||||
summaryLength = "10"
|
||||
|
||||
[params]
|
||||
# DoIt theme version
|
||||
version = "0.2.X"
|
||||
|
||||
[menu]
|
||||
[[menu.main]]
|
||||
identifier = "posts"
|
||||
# you can add extra information before the name (HTML format is supported), such as icons
|
||||
pre = ""
|
||||
# you can add extra information after the name (HTML format is supported), such as icons
|
||||
post = ""
|
||||
name = "Posts"
|
||||
url = "/posts/"
|
||||
# title will be shown when you hover on this menu link
|
||||
title = ""
|
||||
weight = 1
|
||||
[[menu.main]]
|
||||
identifier = "tags"
|
||||
pre = ""
|
||||
post = ""
|
||||
name = "Tags"
|
||||
url = "/tags/"
|
||||
title = ""
|
||||
weight = 2
|
||||
[[menu.main]]
|
||||
identifier = "categories"
|
||||
pre = ""
|
||||
post = ""
|
||||
name = "Categories"
|
||||
url = "/categories/"
|
||||
title = ""
|
||||
weight = 3
|
||||
|
||||
# Markup related configuration in Hugo
|
||||
[markup]
|
||||
# Syntax Highlighting (https://gohugo.io/content-management/syntax-highlighting)
|
||||
[markup.highlight]
|
||||
# false is a necessary configuration (https://github.com/dillonzq/LoveIt/issues/158)
|
||||
noClasses = false
|
||||
|
Reference in New Issue
Block a user