Sunday, December 10, 2017

Windows 10 : How to create setup or upgrade from USB or Flash Drive | Media Creation Tool

In this article i will explain how you can create bootable flash drive or USB to create installation of Windows 10. With these steps you can upgrade your system OS from Windows 7 or Windows 8.1 to Windows 10.



Microsoft website is providing one tool name as "Media Creation Tool" using that you can download the latest OS and create bootable flash drive or USB.

Please download that tool from following Microsoft website link : Media Creation Tool

Depends on your internet speed the necessary files will download and your USB drive will be ready.

Make changes on your system BIOS to make 1st bootable as USB and Windows installation steps will be start.

I have created following video to get more details on these steps..

Please add your questions or comments bellow. Thank you !

Friday, December 1, 2017

Boost your computer performance using Flash Drive | Increase Virtual Memory of your computer

In this post i will give you steps how you can improve your laptop performance using flash drive. In second way i can say i will show how you can use your FLASH DRIVE as RAM.

I will also show you how you can increase the Virtual Memory which will boost your computer performance.




RAM is a temporary storage of data and CPU process all details from RAM. If your computer has more RAM it can save more temporary data so during processing of any application or software there will be less IO operation.

IO operation on HardDisk is more consuming time in every computer process. Computer system also use concept of Caching. It will save data in cache and if program need same data which we added in cache it will not do IO operation and take value from cache.

By increasing Virtual Memory we are increasing cache and FLASH DRIVE will also use as CACHE Memory.

Cache memory is a small-sized type of volatile computer memory that provides high-speed data access to a processor and stores frequently used computer programs, applications and data.

Please take a look following video to know about mentioned steps


Please add your comments or questions in the post. Thank you.

Saturday, November 4, 2017

iPhoneX : Different Buying Options and Offers to get new iPhone X Contract or Unlock

Hello Everyone.. I am writing this new post after long time.. As apple has started delivering new iPhone X so i was looking different different options to buy new iPhone so i thought let me record those searching and share with you guys...

May be there are many friends are excited to get the new iPhone X but it's price keeping them away so here there are several offers which you can take look for Contract and Unlock phones and you will make your decisions..


Same thing also happening with me my heart is saying go for it but my mind is saying is it worth it to spend almost 999$ on Phone and actually those new features which they are introducing with new iPhone X we hardly use it also...

I am not even seeing excitement around my friends circle only if you get credits then and then you will make decisions...

Please take a look following Contract Offer from few network providers
Contract Offer

1) Verizon : $0 Down (for qualified customers) $41.66/mo for 24 months; 0% APR
                     Retail Price: $999.99

  •  Get credit up to 300$ on Trading of your old phones : Click Here  

2) Sprint on Lease :  $41.67/mo for 18 months lease
  •  Get credit up to 350$ on Trading of your old phones : Click Here  
3) AT&T Buy One Get One Free : ( BOGO Offer ) $33.34/mo for 30 months

  • iPhone X: To qualify, one phone may be an iPhone X (new line or upgrade), the other must be an iPhone 8 or iPhone 8 Plus (add-a-line installment plan). You will receive a $700 credit to use toward the new phone (only the iPhone 8 64GB model is free).
  • Please ask AT&T representative estimated monthly bill just not to see any surprises in bill as in Terms and Conditions i am seeing between 2 lines 1 line need to be 70$ / Month so some how iPhone 8 price is covering in monthly bill but please clear all fees and charges in estimated bills.
  • If you are planning to upgrade or buy 2 lines then i think this is best offer.
All Contract offers are showing only device price on top of that there will be monthly network charges so before sing up for contract just make sure your monthly estimated bills are on your expectation budget..

Note : All Offers are as of date 11/03/2017 and it will change from network providers so please you will do inquiry before you select any offer.

Unlock Option:

Now many friends are looking for unlock phone buying options and to pay upfront 999$ is little difficult so apple is giving opportunity to buy iPhone X with monthly installment which name as  "iPhone Upgrade Program"

Please get more details about "iPhone Upgrade Program" here. 

  • Get a new iPhone every year
  • Works with your carrier
  • AppleCare+ coverage included
Please take a look following video for detail explanations



All Offers and Prices are subject to change and Terms & Conditions from providers so please do necessary inquiry before going with any offer.

Saturday, September 30, 2017

Kodi 17.4v + Ares Wizard Installation on Amazon Fire Stick without Downloader App

Amazon Fire TV Stick is a good Android TV device to make your TV as SMART TV. In my previous posts you have seen TV stick installation instruction video step by step. we have also seen steps to install different android apps on TV Stick. If you have not read or view those steps then please take a look following posts first.


In this post we will how you can install KODI v17.4 Krypton on Amazon Fire TV Stick. KODI is Open Source App and very famous to add different different Music , Movie and TV shows Add-Ons.


Whenever you search the steps to install KODI on Fire TV Stick, you will find first step to install "Downloader App" on TV stick.

Now "Downloader" app is not available on Amazon App store and if any user still want KODI on it's Fire TV stick. They can follow mentioned simple steps and they will get latest KODI v17.4 very easily.

After KODI installation i will walk though with steps of installing "Ares Wizard" which will help user to install famous Add-Ons On builds. Builds like "Pulse" or "Chappie" where you will get all Movies or Music Ads On installed.

Please find all steps on following YouTube Video :


Please post your questions or comments bellow. Thank you !

Wednesday, September 27, 2017

What is jQuery? Why jQuery? & Get Started

In this post we will discuss about jQuery basic introduction and simple example. In future post we will go deeper into jQuery examples.


What is jQuery? 
jQuery is a JavaScript library which simplifies JavaScript programming in your application. Using this you can work with HTML document for manipulation, event handling , Ajax , Animation etc easily.
The purpose of jQuery is to make it much easier to use JavaScript on your website.
The jQuery library contains the following features:
  • HTML/DOM manipulation
  • CSS manipulation
  • HTML event methods
  • Effects and animations
  • AJAX
  • Utilities
Small example of simple jQuery page demo is here :

Why jQuery?
There are many JavaScript library out there but jQuery is most popular and easy to learn. It is fast, small and more reacher in all features...
It works with mostly all browsers and many big companies are also using jQuery
  • Google
  • Microsoft
  • IBM
  • Netflix
Get Started
If you are planning to add jQuery in your application then there are several ways to give reference of jQuery library to your application.
  • Download the jQuery library from jQuery.com
  • Include jQuery from a CDN, like Google or Microsoft
Download the jQueryCompressed and uncompressed both copies of jQuery files are available.The uncompressed file is best used during development or debugging.

  • Production version - this is for your live website because it has been minified and compressed
  • Development version - this is for testing and development (uncompressed and readable code)

Both versions are available to download from http://jquery.com/download/

The jQuery library is a single JavaScript file, and you reference it with the HTML <script> tag (notice that the <script> tag should be inside the <head> section):

<head>
<script src="jquery-3.2.1.min.js"></script>
</head>

jQuery CDN
If you don't want to download and host jQuery yourself, you can include it from a CDN (Content Delivery Network).
The following CDNs also host compressed and uncompressed versions of jQuery releases
Google CDN
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>

Microsoft CDN
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.js"></script>

CDNJS CDN
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>

jsDelivr CDN
<script src="https://cdn.jsdelivr.net/npm/jquery@3.2.1/dist/jquery.min.js"></script>

CDNs can offer a performance benefit by hosting jQuery on servers spread across the globe

Tuesday, September 5, 2017

Live Net TV App on Fire Stick | Watch Indian Channels, News, Movies & International Channels on Fire TV Stick.

In this post i am going to share information about one android app installation steps on Amazon Fire TV Stick. Using those steps you can install this Live Net TV App on any android device like Mobile Phone , Tablet, Android TV Box like Amazon Fire TV Stick etc etc.


Many time when you search for finding steps to install this kind of Apps or KODI. You will get first step to install Downloader App on Fire TV Stick. Now as that app is not available on Amazon App store many peoples are looking for some different alternative.

I have found one easy and simple steps to get these apps on your Fire TV Stick device or any Android device without Downloader App.

Please take a look following instructions video where i have explained what you need to do to install Live Net TV App. Using this app you can stream several channels , News channels , International channels . like STAR Plus , Zee TV , Sony TV, Colors TV, Zee News , Republic TV , STAR Gold , Sony MAX etc etc..


DISCLAIMER CONTENT
I don't have any information how Live Net TV App is streaming all channels or videos. If you are having any concern or complaints about content which are streaming on this App. Please contact Live Net TV App developer team or streaming hosting provider.
I am not hosting any copyrighted content or videos on my website or server. Thank You !

Saturday, September 2, 2017

TeaTV App Installation on Amazon Fire TV Stick without Downloader App.

Amazon Fire TV Stick is a good Android TV device to make your TV as SMART TV. In my previous post you can see this TV stick installation instruction video step by step. If you have not not read or view those steps then please take a look following post first

In this post we will see how we can install android apps which are outside from Amazon App store and how you can get those installation files on your stick using cloud access.
There are some android app which give you streaming of movies , channels or TV shows in your TV stick device but most of time you will get step to install "Downloader" app. That app is not available on Amazon App Store now so i will walk through which easy steps to get those apps in your fire TV stick. 
Please take a look following video to get complete steps to install TeaTV App and enjoy the HD quality movies in your Fire TV Stick device.

TeaTv Movie App Installation on Amazon Fire TV Stick Without Downloader App. 


Disclaimer Content

I am not aware how TeaTV app is streaming movies or TV shows so if you are having any concern or complaint about the content which are streaming on TeaTV App please contact the App Developer or video host streaming provider.

I am not hosting any copyrighted videos or 3rd party content on  my website or on any server.  
Thank You !

Friday, September 1, 2017

Amazon Fire Stick Setup Video Step By Step.

In  this post i am going to share step by step instruction to setup Amazon Fire Stick. Last week only i have ordered new Amazon Fire Stick which come with Alexa Voice Remote and it is great tool to make your TV as SMART TV if your TV is not SMART TV.



There are several apps are available in Amazon Apps store and you can also install some well known Android Apps which are outside of Amazon Apps store in the device. Apps are like Tea TV , Live Net TV , KODI etc etc.

I have ordered following Amazon Fire Stick which cost is around 39.00

I am going to show you first setup of Amazon Fire Stick and in my next post we will see step by step instructions to install some of other apps which you can use to stream Movies , TV Shows , News Channels etc..

If you are having good internet WiFi connection then Amazon Fire Stick is a great TV sticks to satisfied your need.

Instead of writing instructions i have recorded all steps and created following video which is uploaded on one of my YouTube channel.

 Amazon Fire Stick Setup Video Step By Step.


Hope this post will be helpful to anyone. Thank you !

Tuesday, August 29, 2017

Windows Forms Multi Threaded Background Job Application

When you are working on distributed architecture application using Multi Threads developer usually come across Cross Thread error.
Error Description : Cross-thread operation not valid: Control 'progressBar1' accessed from a thread other than the thread it was created on.

Whenever we try to access control object which are part of main thread and if you try to change that control object property value you will receive Cross Thread operation error.
It error description suggest that you are trying to do Cross-Thread operation which is not valid.

To produce this error in my example i am going to use small Windows Forms App ( Parent Child ).

  1. Parent Form which is Main Form and it has menu items to open Child Form
  2. Child Form which will start the small loop in thread using "Start Loop" button
  3. From the loop we try to set value of Progress bar and Status label text.
  4. Once you click "Start Loop" button you can see Cross Thread error because Progress bar control is a part of Main Thread and we are trying to access directly to sub thread.

WFBackgroundJob1.cs

This error you can resolve using Thread.Invoke but i am resolving this error using Background Job in my example. Let's take a look simple example which start Background Job under worked thread and it's progress using backgroundWorker1_ProgressChanged event.
Your job runs in background asynchronously and user able to continue working on system as system won't hang even we are running loop.

  1. Parent Form which is same like previous Main Form and it has menu items to open Child Form
  2. Child Form which start the small loop in backgroundWorker1_DoWork event using button "Start Loop" which start loop asynchronously backgroundWorker1.RunWorkerAsync();
  3. DoWork report the progress using backgroundWorker1.ReportProgress method
  4. In example 2 arguments added in ReportProgress method one is percentProgress and second is Progress Status as Text.
  5. Background job control WorkerReportProgress property need to set True before using ReportProgress method

Please get the sample CSharp code as mentioned

WFBackgroundJob2.cs

Please post your questions or comments bellow. Thank you !

Thursday, August 24, 2017

Visual Studio 2017 Community edition download & installation.

Visual Studio is one of famous IDE for Windows and Mac to develop apps for Android, iOS,Mac, Windows , Web and Cloud. Using this IDE we can write our code fast,Debug and Diagnose with ease.
Please get more details about Visual Studio here : Visual Studio

Visual Studio Community is free for all developers or students and in this post we will see step by step instructions to install Visual Studio Community 2017.

Step 1 : Go to link https://www.visualstudio.com/downloads/  to download VS 2017 community edition.

Step 2 : Click on Free Download button of Visual Studio Community 2017 IDE

Step 3: Run the downloaded setup executable file vs_community_xxx.exe

Step 4: Accept the Microsoft Terms and Conditions and click Continue


Step 5: Select VS 2017 different components as per your development preferences. I have selected following as per my preferences

  1. Universal Windows Platform Development
  2. .NET desktop development
  3. ASP.NET and Web development
  4. Mobile development with .NET using Xamarin
  5. Mobile development with JavaScript 
  6. Click on Install



Step 6: Once you click Install it will start installation as per your selection and necessary files will be copied to your system.


Step 7 : After successful installation please Launch the IDE.


Post your questions or comments bellow. Thank You!

Wednesday, August 23, 2017

AngularJS Expression , AngularJS Controller and Bootstrap example

Let's take a look example of area calculation of different shapes using AngularJS Expression and Controller.
  • Square and Rectangle shape's Area calculation using AngularJS expression
  • Circle and Triangle shape's Area calculation using AngularJS controller.
Mentioned page is also design using bootstrap to give nice look and feel.
Please check my previous blog post related to following topics as mentioned.
Please check LIVE demo of given example here : Click Here


AngularJS Expression
AngularJS binds data to HTML using Expressions. It can be written inside double braces as
{{ expression }}. It can also written inside ng-bind directive. In example you will see Square and Rectangle area calculation expression inside AngularJS Expression. AngularJS will resolve the expression and return the value to the HTML element.

Square 
square variable which is width/height of shape and we are initializing variable using ng-init directive.
The same variable is bind with input textbox using ng-model directive.
The Square shape area calculation equation added inside AngularJS Expression as{{sqaure*sqaure}}

Rectangle 
Rectangle shape's width  rectwidth and height rectheight initialize using ng-init directive. Both variables are bind with input textbox using ng-model directive. The Rectangle Area calculation equation is added inside AngularJS Expression as {{rectwidth*rectheight}}

AngularJS Controller
AngularJS applications are controlled by controller. The ng-controller directive is used to define a controller object. AngularJS Controller is javascript object created using JavaScript Object Constructor notation.

In my application ng-app="myApp" directive which is defined AngularJS application. This application run inside define <div> element.The ng-controller="myCtrl" attribute is an AngularJS directive. It defines a controller. When Controller object initialized from JavaScript language it also passes $scope object. Within $scope object we are initializing variables for Circle and Triangle which also contain methods to perform Area calculations.

Circle
Circle's radius variable or attribute is initialized inside controller object in javascript line  $scope.radius=6;  The variable is also bind with input textbox using ng-model directive. To perform circle area calculation we need MATH.PI variable so we are passing $window service also using AngularJS Service Injection feature. $scope.circleArea = function do the calculation and which is added in HTML using AngularJS Expression as {{circleArea()}}

 Triagle
Triangle's shape base and height variable or attributes are initialized inside controller object in javascript line $scope.base=4;    $scope.height=7;  Both variables are bind with input textboxes using
ng-model directive. $scope.triangleArea = function do the calculation and which is added in HTML using AngularJS Expression as {{triangleArea()}}

AngularExpression.html

Hope this example give you some basic idea about AngularJS Expression & Controller.

Please post your questions or comments bellow. Thank You !

Tuesday, August 15, 2017

What is Web API and why to use it ? What is REST?

The API is stand for "Application Program Interface" and web we commonly use for internet application so Web API means the service or interface or endpoint which available on internet to retrieve and update application data for the client.

Here client means general it can be Web Client , Mobile Client  etc etc possible on all available operating system.

Web Clients means all browsers like Internet Explorer, Google Chrome , Safari, Opera etc
Mobile Client means iPhone,iPad , Android Phones and tablets or Windows Phones and tablets

Today creating web application is not enough because Mobile devices like Phones and Tablets are so popular to reach maximum people so you need to design application which make data available across all possible clients.

Let's consider modern application architecture which has several clients on different platforms including Mobile and Web Clients.



If you can notice all client apps are having it's own bussiness logic to connect with database and process data accordingly. This architecture is complex to scale and enhance application. Adding single business rule change  also we need to add in all available business logic which introduce more defects,bugs and expensive also.

Now let's consider same application with central API along with common business layer.


Each clients are using common Application Program Interface and common business layers which will advantage over previous modern architecture.Now days creating Web API we are creating with one architecture pattern called REST and services which are following these pattern called as RESTfull services.

What is REST?
REST stands for ‘Representational State Transfer’ and it is an architectural pattern for creating an API that uses HTTP as its underlying communication method.

Almost every device that is connected to the internet already uses HTTP; it is the base protocol that the internet is built on which is why it makes such a great platform for an API.

HTTP is a request and response system; a calling client sends a request to an endpoint and the endpoint responds. The client and endpoint can be anything but a typical example is a browser accessing a web server or an app accessing and API.

Monday, August 14, 2017

Create pattern with "*" like as follows using While Loop in VB.NET.

Create pattern with "*" like as follows using  While Loop in VB.NET.

*                                              *                                                                 *
* *                                           * *                                                              * *
* * *                                        * * *                                                           * * *
                                                * * * *                                                        * * * *
                                                * * * * *                                                     * * * * *
In this post you will find one sample VB.NET console program which will print pattern like mentioned in the post using While Loop.

You will find same pattern solution using For Loop in my future post :

As you can see in post we need dynamic pattern so first we need to take user input to get number of cycle for this pattern output.

Once you have count you can use that count against While Loop to iterate your console output.

You will find 2 While Loop in this program. 1st Loop is required to perform number of iteration and with this loop only we will go to new line on console.

2nd while Loop is required to perform actual print of STAR ( * ).

Please find example and output of this VB.NET Program as mentioned.
Console Output :


Hope this simple program help any developers.

Please post your any questions or comments bellow on comment box. Thank You !                                                                                                           

This is is test post of Web API

This is is test post of Web API

Sunday, August 13, 2017

AngularJS + Bootstrap Example ! step by step webpage coding.

In my previous post we have seen how to setup AngularJS & Bootstrap in your development machine.
If you are not clear with introduction of AngularJS & Bootstrap then first please review my following posts.

In this post we see one simple AngularJS + Bootstrap small example and it's page development step by step. Please check running page demo here : Click Here


We never get final expected webpage in straight one writing so i always go step by step approach of any webpage or application development.

Step 1:  First step is to create webpage with basic bootstrap template just to see our bootstrap require references are added proper or not.
<html>
  <head>
    <title>Bootstrap 101 Template</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- Bootstrap -->
    <link href="css/bootstrap.min.css" rel="stylesheet">
    </head>
  <body>
    <h1>Hello, world!</h1>

    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="https://code.jquery.com/jquery.js"></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <script src="js/bootstrap.min.js"></script>
  </body>
</html>

Step 2 :  Once you check webpage change webpage title and webpage header"AngularJS & Bootstrap Example"

<title>AngularJS & Bootstrap Example</title>
<body>
<h2>AngularJS + Bootstrap Example</h2>

Step 3 : Go to the Bootstrap documentation page and find the component which you want to use in your page. I am going to use Panel for my "Order Summary" page so i will go to following link and get the sample of  Panel. https://getbootstrap.com/docs/3.3/components/#panels

<div class="panel panel-default">
  <div class="panel-body">
    Panel content
  </div>
  <div class="panel-footer">Panel footer</div>
</div>


Step 4 :  Change panel "Header" , "Content" & "Footer" as per following code sample.You will see that i have used Bootstrap CSS in most of all HTML elements like Input,Label,Panel which give nice view on webpage.

Step 5 :  After you test your Page layout now it's time to add AngularJS Directives as per following
  • Add reference of AngularJS library in your page
 <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
  • Add ng-app directive which  define root of Angular App
  • Add ng-model="price1" , ng-model="price2",ng-model="price3"  which bind HTML element with data value.
  • Add Total as Angular Expression like "{{ price1 + price2 + price3 }}"
AngularExample2.html

Please post your comments or questions. Thank you !

Saturday, August 12, 2017

Disclaimer

This site and owner of this site provides the information service to the public and Website owners.
This site and owner is not responsible for, and expressly disclaims all liability for, damages of any kind arising out of use, reference to, or reliance on any information contained within the site.

 While the information contained within the site is periodically updated, no guarantee is given that the information provided in this Website is correct, complete, and up-to-date.

This site and owner of this site are not responsible for the content you stream to your device and we do not condone piracy so it is your responsibility that you or the sites accessed for streaming have the correct copyright agreements in place and you access these at your own risk.

This site and owner do not host, upload or download any type of video files, live streams.If you have any legal issues please contact the appropriate owner or host sites.

Although the site may include links providing direct access to other Internet resources, including Web sites, this site is not responsible for the accuracy, copyright, compliance, legality, decency, or any other type of the content of streamed from your device contained in these sites.

Links from this site to third-party sites do not constitute an endorsement by this site of the parties or their products and services. The appearance on the

Web site of advertisements and product or service information does not constitute an endorsement by this site.

What is Bootstrap? Setup and Basic Template Example !


Bootstrap is a free front-end framework for faster and easier web development.

Bootstrap includes HTML , JS and CSS based design templates for forms ,button, input, Nav, Navbar, Label , Grid, Table, Graphic icon etc...

The fastest way to get Bootstrap is to download the precompiled and minified versions of our CSS, JavaScript, and fonts.

In this post you will see download and setup of bootstrap with testing basic template.

Get latest bootstrap download link here . http://bootstrapdocs.com/v3.0.2/docs/



Extract Zip file "bootstrap-3.0.2-dist.zip" you will see something like this.

bootstrap/
├── css/
│   ├── bootstrap.css
│   ├── bootstrap.min.css
│   ├── bootstrap-theme.css
│   └── bootstrap-theme.min.css
├── js/
│   ├── bootstrap.js
│   └── bootstrap.min.js
└── fonts/
    ├── glyphicons-halflings-regular.eot
    ├── glyphicons-halflings-regular.svg
    ├── glyphicons-halflings-regular.ttf
    └── glyphicons-halflings-regular.woff

You can also add reference required files from following Bootstrap CDN location.

<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js"></script>

Please check your setup with following basic template.

basictemplate.html                          Please check the page out here :  Click Here
<!DOCTYPE html>
<html>
  <head>
    <title>Bootstrap 101 Template</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- Bootstrap -->
    <link href="css/bootstrap.min.css" rel="stylesheet">
    </head>
  <body>
    <h1>Hello, world!</h1>

    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="https://code.jquery.com/jquery.js"></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <script src="js/bootstrap.min.js"></script>
  </body>
</html>

Hope this post help any developer.

Please post your questions in comment below, Thank You !

Friday, August 11, 2017

What Is AngularJS? Introduction and Basic Example.


AngularJS is a structural framework for dynamic web apps. AngularJS extends HTML with new attributes.

AngularJS is a JavaScript framework. It can be added to an HTML page with a <script> tag.

AngularJS extends HTML attributes with Directives, and binds data to HTML with Expressions

AngularJS is perfect for Single Page Applications (SPAs).

It is a library written in JavaScript and can be added to a web page with a script tag:


<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>

Let's take a look basic example so you will come to know how AngularJS directives or attributes which are adding with HTML.

AngularJS Example : 

<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
   <div ng-app="">  
            <h3>Name: <input type="text" ng-model="name"></h3>  
            <h2 ng-bind="name"></h2>
     </div>
</body>
</html>

Check example output here  : Test Page Here 

 AngularJS starts automatically when the web page has loaded.

The ng-app directive tells AngularJS that the <div> element is the "owner" of an AngularJS application.

The ng-model directive binds the value of the input field to the application variable name.

The ng-bind directive binds the innerHTML of the <h2> element to the application variable name.

SPA : Angular is very famous for Single Page Application due to this binding benefit and with AJAX call we can bring data from server using web api or other call mechanism and those modules attributes updates in javascript file and changes to UI automatically reflects.

We will learn more for AngularJS in my next post. Thank You !

This is test post of Mobile App Xamarin

This is test post of  Mobile App Xamarin

This is test post for Mobile Cord

This is test post for Mobile Cordova App

Create pattern with "*" like as follows using C# or CSharp. Example of For Loop !


Create pattern with "*" like as follows using C# or CSharp. Example of For Loop !

*                                              *                                                                 *
* *                                           * *                                                              * *
* * *                                        * * *                                                           * * *
                                                * * * *                                                        * * * *
                                                * * * * *                                                     * * * * *
                                                                                                                   * * * * * *


In this post you will find one sample CSharp console program which will print pattern like mentioned in the post using For Loop.

You will find same pattern solution using While Loop in my future post :

As you can see in post we need dynamic pattern so first we need to take user input to get number of cycle for this pattern output.

Once you have count you can use that count against For Loop to iterate your console output.

You will find 2 For Loop in this program. 1st For Loop is required to perform number of iteration and with this loop only we will go to new line on console.

2nd For Loop is required to perform actual print of STAR ( * ).

Please find example and output of this CSharp Program as mentioned.

Console Output :




Hope this simple program help any developers.

Please post your any questions or comments bellow on comment box. Thank You !