Streaming video in web application
Recently one of our flash developer raised an concern that when he has uploaded a video (.mp4) it is not working properly means not buffering. It start playing only after successful loading of full video which is not right and it should load and play..load and play. I analyze this and found that is it…
SharePoint Add-in using Angular2
In my last post I explained how we can create an SharePoint Add-in using Angular2 (beta version). But now Angular2 has been officially released and there are significant changes, so I thought I should work and create the SharePoint Add-in using Angular2 (version 2.1.0). Setting up the project for creating SharePoint Add-In using Angular 2…
Create SharePoint app for SharePoint 2013 using Angular2 with TypeScript
On 18th of September 2014 was pushed the initial commit of version 2.0 of the AngularJS framework. A few weeks ago the core team at Google, published AngularJS’ 2.0 and gave a couple of talks on ng-conf about their new router, change detection, templating, etc. I’m passionate about AngularJS since its early versions so I…
After changing permalinks wordpress throwing 404 error
I have created a site using wordpress and everything was working fine until I changed the permalink. Just after changing permalink, I start getting error 404 for almost all link. After troubleshooting and surfing I came to know that this is a common problem which many people are getting in wordpress installation, so I thought…
DML statements in SQL server functions
We can not write DML statements in SQL functions. Functions have Only READ-ONLY database access. If DML operations would be allowed in functions, then functions would be pretty similar to stored procedures. The way it is, a stored procedure can use a function, but not vice versa. Therefore, functions increase the “power” of stored procedures,…