In this article, we’re gonna take a look at Angular, the front end framework that we’re gonna use in a project.
Continue reading “Angular in layman’s terms – Components, services and modules”
In this article, we’re gonna take a look at Angular, the front end framework that we’re gonna use in a project.
Continue reading “Angular in layman’s terms – Components, services and modules”
AngularJS is a modern JavaScript framework from Google commonly used to work with Single Page Applications (SPAs). AngularJS is open sourced under MIT license, and the development progress of AngularJS can be followed on its GitHub repository.
What you will need:
Continue reading “Installing Atlassian Confluence 6.5+ on Windows Server (IIS 7+)”
EF 4.1 introduces two new features
Code First is focused around defining your model using .NET classes. These classes can then be mapped to an existing database or be used to generate a database schema. Additional configuration can be supplied using Data Annotations or via a fluent API. Continue reading “How to create a Code-First EF model”
We’ve all heard at one point ransomware being mentioned – computers hijacked by evildoers and then encrypted with a key which was available at a cost to the unaware user.
People have been asking – how does it spread? Can it come through the network? Is it a download or an exe file you have to click to get it on your machine?
What makes ransomware so effective? Continue reading “How does ransomware work?”
This article describes a method to automatically copy data from an object to another object with similar structures. This is similar to a deep_copy(source, destination)
but with the possibility of returning a type that is different from the source.
I needed a way to apply/convert values from one object to another so I created a method to automatically drill down the source object graph and copy the properties from one object to another. There are many ways to do this, but I designed a method that is generic enough and also leaves place for customization/fine tuning/hacking. Continue reading “Method to Copy Data Between Objects of Different Types”