Author: Botond Bertalan
Mobile Video Editor In Your Pocket, InShot App Review
Posted onReview of “Learn TDD in 24 hours” on Udemy [2018]
Posted onWhat is Test Driven Development (TDD) ? Test driven development is all about writing code that you trust, maintainable, and you won’t call it legacy code straight out of the box. It means you write test first and then you start to write code. In contrast with common beliefs you save time with this technique […]
My First Experience Switching From Windows to Ubuntu for Work [2018]
Posted onHow to Check the Xbox One Controller Battery Level on Windows 10 PC
Posted onTo check the battery level of your wireless Xbox One Controller is not that trivial on a Windows 10 PC. You might think that Microsoft gives you a working solution out of the box but I was spending quite a lot of time finding out what is the right way to do it. It turns out […]
OpenShot vs Shotcut video editor as a free Adobe Premiere Pro alternative on Windows 10 in 2018
Posted onToday I tried out two free alternative for Adobe Premiere Pro on Windows 10. Namely OpenShot and Shotcut video editor. Let me tell you my experience after a half a year of Premiere Pro experience. Intro If you are like me, who is small on YouTube or/and don’t want to spend that much money (opens in […]
Layout Design View Render Problem in Android Studio 3.0.1
Posted onGradle problems and Design view is broken in android studio 3.0.1 Currently I am learning the Google: Associate Android Developer (AAD) path on Pluralsight by Jim Wilson. (Link at the end of the post.) At the third course: Enhancing the Android Application Experience I had to update the app gradle file to give support for […]
A simple way to add copyright notice to your website’s footer that you never have to update again
Posted onASP.NET MVC 5 Custom “Static” Razor Pages
Posted onThis post is one of the ASP.NET MVC 5 Custom Routes series. The problem You can usually identify this problem when you are creating a lot of custom routes for each one of your empty controller actions. If you follow this antipattern you will end up with an endless RouteConfig.cs , that will point to […]
ASP.NET MVC 5 Custom Routes
Posted onHow do you handle your routing in your web application? Do you use all the time the default routing rule? routes.MapRoute( name: “Default”, url: “{controller}/{action}/{id}”, defaults: new { controller = “Home”, action = “Index”, id = UrlParameter.Optional } ); Or do you write your own rules for custom functionality when you want something different for […]