2016-06-15 Use below code to trigger window.resize event. This can be helpful to refresh some libraries like Chartist.js when a panel or a div the control is contained in is expanded. P.S. The above method isn’t supported by Internet explorer (failed on IE 11), therefore use below method for wider browser support.
Author Archives: Menol
Preserving milliseconds when passing dates around front end
2016-06-08 Instead of passing the datetime pass the datetime.Ticks which is a (long) numeric value so the complete datetime value will be preserved. Then convert ticks back to datetime in the server (controller action method).
JavaScript Null Coalesce
2016-06-07 Use || similar to ?? in C# example (mvc)
Congfigure IIS to use later .net frameworks
2016/03/07 When IIS is first installed you will most probably get several errors when trying to launch your asp.net website. This is more prevalent when your application needs a .net framework that is higher than the .net framework version supported by the IIS out of the box. To fix these errors you need to followContinue reading “Congfigure IIS to use later .net frameworks”
Robert E. Rubin quote
“Some people are more certain of everything than I am of anything.” ― Robert E. Rubin
Ego is evil
Ego is evil. – Cassian Menol Razeek
Books I have read since the beginning of 2016
These are the books I have read (or listened to their audio counterparts) since the beginning of 2016. I am not going to write my opinion about each of these books, instead I hope you too trust the majority of the people from around the world who have recommended these great books, like I did before choosingContinue reading “Books I have read since the beginning of 2016”
ILT: [Solved] Nexus 5 Randomly Restarting After Upgrading to Marshmallow
One night I allowed my Nexus 5 to upgrade to the latest Android version (Marshmallow) but from next morning my phone was behaving very strangely. It kept restarting randomly and became almost useless and completely unreliable. The Problem The problem seemed to be related to battery calibration information. Upgrading to Marshmallow somehow corrupted orContinue reading “ILT: [Solved] Nexus 5 Randomly Restarting After Upgrading to Marshmallow”
How Software Engineers Became Software Developers
2015-09-29 This article looks at how and why modern software projects easily become messy and extremely convoluted. This article should not be understood as against new concepts but as a promoter of software engineering education, skills, and experience that allows engineers to make rational decisions to choose when a concept should be practiced. The History SoftwareContinue reading “How Software Engineers Became Software Developers”
Using sqlpackage.exe parameters and properties to publish your db with less hassle
2015-09-25 This article is for anyone who already knows how to use sqlpackage.exe. Visit the Microsoft link at the bottom to learn about sqlpackage.exe usage. Where I work we use sqlpackage.exe to deploy our database snapshots (DACPACs) to various locations. Since I have started to use this I faced several problems as the script wasContinue reading “Using sqlpackage.exe parameters and properties to publish your db with less hassle”