Hey Guys! Today was one of those days where I encountered a weird problem. It took me a while to figure it out. In this blog, I’ll share what the issue was and how I finally solved it. It sounds like an easy fix, but it definitely took some time to sort out! Problem We... Continue Reading →
How to create dynamic objects in C#
In the world of C# programming, the concept of dynamic objects brings forth a paradigm shift, offering flexibility and versatility in handling data structures. While C# is known for its statically typed nature, dynamic objects introduce a dynamic typing capability, enabling developers to work with objects whose structure is determined at runtime. This blog will... Continue Reading →
How to use the useState() hook in React
State management is a crucial aspect of building modern web applications, and React has provided developers with various tools and techniques to handle state effectively. With the introduction of hooks in React 16.8, functional components gained the ability to manage state, thanks to the useState hook. In this blog post, we'll explore how to leverage... Continue Reading →
Change Height and Width of TextArea in codemirror
CodeMirror is a JavaScript text editor package which you can integrate with your applications. I was trying to integrate the respective Angular package of CodeMirror which is called as @ctrl/ngx-codemirror into my application. When I started to integrate codemirror, I was facing fold gutter issue which I have explained in this blog. Recently, there was... Continue Reading →
ngx-CodeMirror – Fold gutter issue
CodeMirror is a JavaScript text editor package which you can integrate with your applications. I was trying to integrate the respective Angular package of CodeMirror into my application. But I faced some issue regarding fold gutter and I didn't find any proper documentation to resolve that issue. So why not create one? What's the issue?... Continue Reading →