Skip to content

Commit d24b3e7

Browse files
committed
fix some blog related stuff
1 parent 42df0a0 commit d24b3e7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

content/blogposts/apex-off-grid/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: >
33
APEX Offline for everyone: APEX Off Grid
44
date: 2025-04-25
55
description: I released the third beta release of the AG-Grid plug-in for Oracle APEX. Find out what's new and how to get it.
6-
slug: apex-ag-grid-plugin-v0.3
6+
slug: apex-off-grid
77
titleImage: ../_common_imgs/kelly-sikkema-7alo7OJVNVw-unsplash.jpg
88
titleImageAlt: A plug in front of a wall with a socket
99
titleImageSource:

content/blogposts/guid-pseudorandom/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
date: 2023-10-02
55
description: Change me
66
slug: guid-pseudorandom
7-
titleImage: ./change-me.jpg
7+
titleImage: ../_common_imgs/dalle-2023-christmas-pixel.png
88
titleImageAlt: change me
99
titleImageSource:
1010
{

content/blogposts/json-duality-views-sveltekit-app/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: >
44
date: 2021-09-30
55
description: JSON Duality Views bridge the gap between relational datamodels and object represantions to accelerate application development. In this post I show how to use them with SvelteKit.
66
slug: json-duality-views-sveltekit-app
7-
titleImage: ./github-actions-cronicle-title-image.jpg
7+
titleImage: ./json-dv-actor-details.png
88
titleImageAlt: Car construction plant with robots
99
titleImageSource:
1010
{

content/blogposts/webcomponents-intro/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ calculate() {
291291
}
292292
```
293293

294-
Notice how we redefine the `calculate()` method in the constructor. JavaScript and the `this` keyword are a confusing mess. Basically, what happens is that when we pass the method to the event listener, [>>this<< will get overwritten by the `addEventListener` function to the triggering element](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener#the_value_of_this_within_the_handler). This results in us not being able to access the class properties anymore. To fix this, we have to **bind the method to the class in the constructor**. This will make sure that the `this` keyword will always refer to the class instance.
294+
Notice how we redefine the `calculate()` method in the constructor. JavaScript and the `this` keyword are a confusing mess. Basically, what happens is that when we pass the method to the event listener, ["this" will get overwritten by the `addEventListener` function to the triggering element](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener#the_value_of_this_within_the_handler). This results in us not being able to access the class properties anymore. To fix this, we have to **bind the method to the class in the constructor**. This will make sure that the `this` keyword will always refer to the class instance.
295295

296296
<BlogGif filename="html-vanilla-calc.gif" alt="" />
297297

content/blogposts/webcomponents-problems/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: 'Mastering Web Components: A Comprehensive Step-by-Step Guide'
33
date: 2023-08-10
44
description: Learn step-by-step how Web Components work and how to use them. Including HTML templates, custom elements, shadow DOM, attributes, properties, and slots.
5-
slug: web-components-step-by-step
6-
titleImage: ./sigmund-4CNNH2KEjhc-unsplash.jpg
5+
slug: webcomponents-problems
6+
titleImage: ../_common_imgs/dalle-2023-christmas-pixel.png
77
titleImageAlt: semantic html
88
titleImageSource:
99
{

0 commit comments

Comments
 (0)