Monday, 3 February 2014

AngularJs vs JS Good Example



Following is character count with JavaScript -

http://jsfiddle.net/timur/47a7A/


and This is with AJS - http://jsfiddle.net/9DbYY/   - Only one line

Feel the difference

Cheers!!

Prabath Randy.


Monday, 20 January 2014

WCF vs ASP.net Web API



For your reference i have Extracted following part


Extracted From - http://www.codeproject.com/Articles/341414/WCF-or-ASP-NET-Web-APIs-My-two-cents-on-the-subjec


  • If your intention is to create services that support special scenarios – one way messaging, message queues, duplex communication etc, then you’re better of picking WCF
  • If you want to create services that can use fast transport channels when available, such as TCP, Named Pipes, or maybe even UDP (in WCF 4.5), and you also want to support HTTP when all other transports are unavailable, then you’re better off with WCF and using both SOAP-based bindings and the WebHttp binding.
  • If you want to create resource-oriented services over HTTP that can use the full features of HTTP – define cache control for browsers, versioning and concurrency using ETags, pass various content types such as images, documents, HTML pages etc., use URI templates to include Task URIs in your responses, then the new Web APIs are the best choice for you.
  • If you want to create a multi-target service that can be used as both resource-oriented service over HTTP and as RPC-style SOAP service over TCP – talk to me first, so I’ll give you some pointer.

  • Cheers
  • Prabath
  • Wednesday, 1 January 2014

    Angular Toaster Notification JavaScript which supports Bootstrap 3


    Angular JS Toaster -  https://github.com/jirikavi/AngularJS-Toaster

                      Some Examples - http://codeseven.github.io/toastr/demo.html

                                                  http://plnkr.co/edit/iaC2NY?p=preview




    Other JavaScript Notification Frameworks

    1. http://pinesframework.org/pnotify/#demos-simple


    Cheers!!

    Prabath Randeniya.