I’ve decided to dive into game development. And result of it is this tiny game: https://bit.ly/3tLzAEo Expect future games to come. Soon I’ll post more info about my first mobile game. Until then, try this tiny game.
Developer Log
How to organize Visual Studio projects
In my latest Youtube video, I talked about how to organize Visual Studio projects in a Visual Studio blank solution to support multilayered architecture. Why should you organize your application in a multilayered way? Well, so your app becomes more robust, easy to upgrade and maintain. This way you know where and how to look,…
Caching in DotNet Core WebAPI using Strategy Pattern
Let me write today about Caching, Repository pattern and finally about CacheRepository by using Strategy pattern. So, I’ve seen a lot of developers use caching pretty differently. And mostly what I’ve seen, was, them using cache inside the Controller or BLL, if there is one. I don’t think this is a proper way of doing…
How to fix the IISExpress SSL certification issue
Let’s continue with DotNet stuff. One of the problems I’ve encountered when dealing with IISExpress and using Visual Studio was when I used SSL for application. If you are working in a team of developers, you probably agreed upon a valid port number for SSL. In my case it was port number 5001. Since I’m…
Automapper Optimization
Today I’ll write about Automapper optimization when using Entity Framework. I won’t go into too much detail about what AutoMapper is and how to use it, I’ll give you just a short intro. I will focus more on how to optimize AutoMapper if you are using Entity Framework. As I see some people tend to…
Dotnet core – 415 unsupported media type error? Easy fix
Prologoue Hello friends! It’s been a while, again! I hope you are all going well and that this new 2021 is going to be better than the last 2020 year, for all of us. My New Years’ resolutions are to head back to posting each week blog post and to make one Youtube video per…
Javascript Splice VS Javascript Slice
Little chit-chat Hi! Let me keep you up-to-date with things that were rolling lately. As I’ve said previously, I finally updated my blog. I wanted to give it a more sleek and personal look. The old one was good but a little bit cold without any personal touch. So here it is, a new looking…
INTERVIEW JOB CODING TASKS – XML file manipulation
It’s been a while, once again, since my last post. But due to a much of stuff, I’m doing in the background, I guarantee you, it’s going to be worth it! Bunch of changes is going to be presented to you very soon as well as new content, in a much more professional way. Anyway,…
How to check if a picture is an image or a floor plan by using Javascript
Hi there! Oh, maaaan… This Coronavirus situation was pretty difficult. I hope you all managed to overcome it without any serious consequences. As you might have guessed, it did impact my writings on my blog and youtube video recordings as well. The home office proved to be much more exhausting than it sounds at first….
INTERVIEW JOB CODING TASKS – Calculate permutations
Today we are going to continue with interview coding tasks. I really do hope this, solved, coding task is going to help you during your interview. Task: Depending on input value i.e. (123) create all permutations i.e:(123,213,231,132,312,321) Solution: Cheers