Skip to content

Commit

Permalink
update domain, title, and icon
Browse files Browse the repository at this point in the history
  • Loading branch information
mina-skunk committed Oct 22, 2021
1 parent ea2e3e6 commit ae46623
Show file tree
Hide file tree
Showing 17 changed files with 52 additions and 11 deletions.
16 changes: 15 additions & 1 deletion content/blog/windows-subsystem-for-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,22 @@ _Note: If you are looking to get into C or C++ development `build-essential` is

You can use your regular Windows installation of Visual Studio Code to interact directly with the Linux environment. Install the [Remote Development](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack) extension pack or just [Remote - WSL](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-wsl). Then you can use the Remote Explorer to browse WSL Targets (WSL OS's you've installed). All the projects and files are in and commands run in the Linux environment.

![](/Screenshot_2021-10-17_171944.png)
![](/images/Screenshot_2021-10-17_171944.jpg)

_Note: The `Remote Development` extension pack also includes `Remote - SSH` which allows you to interact with remote Linux environments exactly the same way_

To test it out we can throw a `hello.cpp` in there.

```cpp
#include <iostream>

int main()
{
std::cout << "Hello World!\n";
return 0;
}
```

![](/images/Screenshot_2021-10-21_205232.jpg)

<!-- Does this need a conclusion paragraph (I suck at those) -->
2 changes: 1 addition & 1 deletion layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<v-app-bar fixed app>
<v-toolbar-items>
<v-btn nuxt to="/">Home</v-btn>
<v-btn nuxt to="/social">Social & Games</v-btn>
<v-btn nuxt to="/social">Social</v-btn>
<v-btn nuxt to="/blog">Blog</v-btn>
<v-btn nuxt to="/links">Links</v-btn>
</v-toolbar-items>
Expand Down
9 changes: 4 additions & 5 deletions nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export default {

// Global page headers: https://go.nuxtjs.dev/config-head
head: {
titleTemplate: '%s - William Lohan',
title: 'William Lohan',
titleTemplate: '%s - gatimus',
title: 'Home',
htmlAttrs: {
lang: 'en',
},
Expand Down Expand Up @@ -61,9 +61,8 @@ export default {

// PWA module configuration: https://go.nuxtjs.dev/pwa
pwa: {
icon: false,
manifest: {
lang: 'en',
meta: {
theme_color: '#bf00ff',
},
},

Expand Down
14 changes: 13 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
{
"name": "william-lohan.github.io",
"name": "gatimus",
"version": "1.0.0",
"private": true,
"description": "personal blog",
"homepage": "https://gatimus.com/",
"bugs": {
"url": "https://github.com/william-lohan/william-lohan.github.io/issues"
},
"author": {
"name": "William Lohan"
},
"repository": {
"type": "git",
"url": "https://github.com/william-lohan/william-lohan.github.io.git"
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
Expand Down
5 changes: 5 additions & 0 deletions pages/blog/_slug.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ export default {
blog,
};
},
head() {
return {
title: this.blog.title,
};
},
computed: {
date() {
return this.blog?.updatedAt
Expand Down
3 changes: 3 additions & 0 deletions pages/blog/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ export default {
blogs,
};
},
head: {
title: 'Blog',
},
};
</script>

Expand Down
3 changes: 3 additions & 0 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ export default {
page,
};
},
head: {
title: 'Home',
},
};
</script>

Expand Down
3 changes: 3 additions & 0 deletions pages/links.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ export default {
links,
};
},
head: {
title: 'Links',
},
};
</script>

Expand Down
3 changes: 3 additions & 0 deletions pages/social.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ export default {
social,
};
},
head: {
title: 'Social',
},
};
</script>

Expand Down
Binary file removed static/Screenshot_2021-10-17_171944.png
Binary file not shown.
Binary file modified static/favicon.ico
Binary file not shown.
Binary file added static/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/images/Screenshot_2021-10-17_171944.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/images/Screenshot_2021-10-21_205232.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions static/robots.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

host: william-lohan.github.io
host: gatimus.com

User-agent: *
Allow: /
Disallow: /font-accessible-dfa/
Allow: /
Binary file removed static/v.png
Binary file not shown.
1 change: 0 additions & 1 deletion static/vuetify-logo.svg

This file was deleted.

0 comments on commit ae46623

Please sign in to comment.