Ben

About Ben

This author has not yet filled in any details.
So far Ben has created 60 blog entries.

Testing Markdown Parser

Testing code blocks in HTML tags Testing Markdown inside a details/summary block Hidden Code Sample ```js console.log('5'); ``` console.log('5');   Testing markdown wrapped in a DIV Test H2 Code sample: [...]

2024-08-29T20:16:57-03:00June 17, 2024|

Testing Highlight.js

Testing command line code hint (cmd): rem This is a test netsh delete ipport=0.0.0.0:44369 Code fence with no lang hint will have language auto-detected by highlight.js: ``` console.log("this is a [...]

2024-08-12T15:12:25-03:00June 4, 2024|

Post Guidelines

Background This site uses Markdown for simplified input. Specifically, it adheres to the CommonMark spec. Code is highlighted using highlight.js. Adding Code to a Post There are two ways to [...]

2024-08-04T00:17:39-03:00April 8, 2024|

Ignore First Render in React’s useEffect()

Sometimes you want to use useEffect() to catch a change in a state, but only after the initial value has been set. For example, you have a state called selectedId, [...]

2024-03-18T13:28:22-03:00October 16, 2023|

Relationships in Entity Framework Core 7

One to Many Relationships This article does not yet include information about One-To-Many relationships in Entity Framework Core 7. However, One-To-Many relationships have not changed much since Entity Framework Core [...]

2023-10-10T20:27:38-03:00October 10, 2023|

React Component with Children

Creating a React component that contains children can be as easy as including a children property and including {props.children} in the Return function. But knowing the proper type to use [...]

2023-05-05T11:18:20-03:00May 5, 2023|
Go to Top