Category: Programming & IT
My First Experience Switching From Windows to Ubuntu for Work [2018]
Posted onLayout 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 […]
Convert .NET Core library to .NET Standard library
Posted onToday I just made a mistake to create a library as a .NETCoreApp1.1 Class Library while I really meant to create a .NetStandard Class Library. It is not a big deal if you realise this before you would start to write a lot of code in it, because you can just delete it and recreate […]
XSD to C# Model for XMLSerializer with xsd.exe
Posted onToday I just faced a situation where I have got a huge XSD library to use for a service integration. Because I suspected it won’t be a small task to write by myself and honestly I never had to do this before I started to look for an automated solution. Being a lazy programmer and […]
Windows 7 stucked update solution
Posted onI had a “small” issue for a week when I reinstalled my old windows 7 laptop. It was all ok, except it did not want to install updates. Nor skype or similar things. At first I got errors of the c++ redistribution library. (Here is the solution, to install it follow the steps from below.) […]
JavaScript VS C# ( Google distance API )
Posted onTo use Google’s DistanceMatrix API and do some calculation with JavaScript is easy. Try the same with C# ! Nice, quick and dirty. Start with JavaScript I was (and I am still) playing with a code that can do some math based on a distance between 2 locations. Because Google supports JavaScript it is really […]