Skip to content

Commit

Permalink
Use webp
Browse files Browse the repository at this point in the history
  • Loading branch information
GDWR committed Jan 31, 2024
1 parent b27d8bc commit 3378eb5
Show file tree
Hide file tree
Showing 14 changed files with 5 additions and 5 deletions.
Binary file added public/images/composing-greatness.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 removed public/images/gdwr.png
Binary file not shown.
Binary file added public/images/gdwr.webp
Binary file not shown.
Binary file removed public/images/gdwr_small.png
Binary file not shown.
Binary file added public/images/gdwr_small.webp
Binary file not shown.
Binary file removed public/images/placeholder.png
Binary file not shown.
Binary file added public/images/placeholder.webp
Binary file not shown.
Binary file removed public/images/ssh-its-a-secret.png
Binary file not shown.
Binary file added public/images/ssh-its-a-secret.webp
Binary file not shown.
Binary file removed public/images/ssh-portforward.png
Binary file not shown.
Binary file added public/images/ssh-portforward.webp
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import "@fontsource/jetbrains-mono";
<a class="flex title-font font-medium items-center mb-4 md:mb-0 text-orange-500 hover:text-orange-300 dark:text-orange-300 dark:hover:text-orange-500" href="/">

<div class="avatar p:10 w-20">
<img src="/images/gdwr_small.png" >
<img src="/images/gdwr_small.webp" >
</div>

<h1 class="ml-3 text-4xl font-['jetbrains_mono']">{SITE_TITLE}</h1>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/blog/ssh(hhh)-its-a-secret.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: "ssh(hhh)... It's a secret"
description: "What they didn't tell you ssh can do."
publishDate: "March 22, 2023"
# updatedDate: "March 5, 2023"
heroImage: "/images/ssh-its-a-secret.png"
heroImage: "/images/ssh-its-a-secret.webp"
---

[ssh](https://linux.die.net/man/1/ssh) is a vital tool in the programmer's arsenal. Enabling the ability to login to servers remotely
Expand Down Expand Up @@ -71,7 +71,7 @@ To do this you can use `-L`. For example, if I wanted to access port `:3000` (ty
`ssh -L 3000:127.0.0.1:3000 remotesystem` the format is `port:host:hostport`, it took me a little bit to understand how this comes
into play, hopefully a small diagram helps.

![ssh portfowarding examples](/images/ssh-portforward.png)
![ssh portfowarding examples](/images/ssh-portforward.webp)

#### 2a. Bonus! PortForward in your config.
I learnt while writing this that you can specify ports to forward for specific hosts in your `~/.ssh/config` file! Wow, now I don't have
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const Buttons = [
];
const title = "GDWR";
const campfireImage = "/images/gdwr_small.png";
const campfireImage = "/images/gdwr_small.webp";
---

Expand All @@ -21,7 +21,7 @@ const campfireImage = "/images/gdwr_small.png";
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gdwr.me" />
<meta property="og:title" content={title} />
<meta name="description" content="GDWR's personal portfolio" />
<meta name="description" content="Fullstack Developer" />
<meta property="og:description" content="Fullstack Developer" />
<meta property="twitter:title" content={title} />
<meta property="og:site_name" content={title} />
Expand Down

0 comments on commit 3378eb5

Please sign in to comment.