I have a fun project made with create react app. I want to convert the same application to a browser extension. This idea forces me to make the project a mono r
I am trying to write a function to display the difference time between current time and e.g. the creation time of a message. Herefore I wrote a function to get
I want to remove a JSONB object by their unique 'id' value from a JSONB array. I am no expert at writing SQL code, but I managed to write the concatenate functi
On the load of a page (Blazor WebAssembly - NOT server), I do this: protected override Task OnInitializedAsync() { Console.WriteLine("Init
I want to make a game by coding on Visual Studio. When I run code, the console will appear but it's small. And I need to press maximize to make it full screen.
I have a big project with a CI/CD plan that takes so much time to execute. But I want to play specific jobs on different changes. I've tried changes feature of
I'm trying to get data from both external source and another sheet of my excel file into one table. What I have in SQL Server is a table of my customers: λ
Struggling to understand how this code works function countup(n) { if (n < 1) { return []; } else { const countArray = countup(n - 1); co