Blog

Clean code & ReverseString

In his latest video, Nick Chapsas is reviewing various C# advises. The one we will be talking is about Keep it simple stupid, and starts but comparing two implementation of the same function.

Read more

Stack on the stack

ref struct have been introduced with C# 7.2 to give us some optimizations opportunities. So let's try to implement a ref struct Stack and see how it goes.

Read more

How to observe responsive breakpoints

Have you ever wanted to know in which breakpoint your page is, so you may adapt part of the page in ways CSS cannot, such as setting aria attributes?
By using custom properties and media queries, it is simpler than ever.

Read more