Skip to main content

Posts

Showing posts from September, 2014

5 Million Gmail Usernames and Passwords Leaked online, Check Yours Now

Gmail accreditation leaked online?            Oh my God! Afresh I accept to change my password!! Yes, you heard right. Millions of Gmail annual accreditation (email abode and password) accept been baseborn and fabricated about accessible through an online forum, causing a ample bulk of users common to change their Gmail countersign again.          The website that appear the email addresses with analogous passwords is Russian. The accreditation assume to be old and acceptable sourced from assorted abstracts breaches. It is believed that the leaked passwords are not necessarily those acclimated to admission Gmail accounts, but assume to accept been aggregate from added websites area users acclimated their Gmail addresses to register. 5 Million gmail credentials leaked online            The annual bankrupt if a user acquaint a hotlink to the log-in accreditation on Reddit frequented by hackers, able and aspiring. But the annal book absolute about 5 actor Gmail addresse

Timer Display using AngularJS

Timer Display To display timer in a page means, we need to aware of angular directive as following $interval and $filter . Current time get from new Date() object from native java script.   $interval Directive:  A interval is wait into a millisecond or trigger to a function, This function many many time to repeatedly calling process is control to us.   Syntax:  $interval(fn, delay, [count], [invokeApply]); fn - a function to call repeatedly. Delay – number of millisecond to call a function. Count – Number of time to repeat.(0 value means no-repeat) invoteApply – set to false means it will skip. Example:  HTML: <div ng-app="timerApp">     <div ng-controller="timerController">         {{time}}     </div> </div> JAVAScript: var app = angular.module("timerApp", []); app.controller("timerController",['$scope','$interval','$filter', fu

Reported Apple iCloud Hack Leaked Hundreds of Nude Celebrity Photos

Now this gonna be the acme of Aloofness Breach! Nude images of several high-profile persona including actors, models, singers and presenters accept been fabricated accessible online in a arrant hacking aperture affiliated to the Apple iCloud service.        The contempo aloofness aperture appears to be one of the better celebrity aloofness breaches in history and represents a austere aperture and abuse of privacy. A hacker allegedly breached Apple iCloud annual and afflicted the claimed photos of at atomic 100 high-profile stars. WHO IS BEHIND IT The bearding hacker, application the name Tristan , sparked the aspersion on Sunday afterwards auctioning a ample accumulation of changeable celebrities' declared naked photographs assimilate the 4chan online forum, an online bulletin lath acclimated for administration pictures. The annual of those celebrities allegedly affected, whose nudes photographs are allegedly in this cache, is actual continued that includes Jenny M

How to use ng-bind in angularJS

User Typed text bind in a page using angularJS ?            ngBind in angular it will append the DOM element of another DOM attribute values to show ng-bind named attributes.         {{Expression}} no need of expression of angularJS data appending in DOM container. ng-bind attribute is enough to accessing scope of controller value in the DOM. Sample Declaration ng-bind :    <span ng-bind="bindName"></span> ng-bind Example :  html: <div ng-app="bindapp">     <div ng-controller="bindController">         <input type="text" ng-model="message" />             <p> Customer Message <span ng-bind="message"></span> </p>     </div>         </div> javascript: var app = angular.module("bindapp",[]); app.controller("bindController",['$scope',function($scope){     $scope.message = "HI THIS SAMPLE M

How to use ng-href directive in AngularJS

ng-Href Directive                  ng-Href directive is hyper link markup to a text in angularJs. This hyperlink will change able to implement dynamic url {{hash}} value. Hash value to assign in a controller to happened user click event fire to assign dynamic url. This Value is undefined means it will return to 404 page. ng-Href directive Example  HTML:      <div ng-app="anchor">     <div ng-controller="anchorController">         <a ng-href="http://www.google.com" ng-click="show($event)">Anchor Tag</a>     </div>   </div> Javascript :  var anch = angular.module('anchor', []); anch.controller('anchorController',['$scope', '$window', function($scope, $window){     $scope.show = function(obj) {       $window.open(obj.target.href);     } }]); Result :  Demo

How to use ngClick in angularJs

ngClick             What is ngClick ?                   An ngClick directive to allow a customer even handling functions. An html element make any click event logic is need to implement ng-click in DOM.  Syntax:      <input type ="anytype" ng-click="function_name()"> How to pass C urrent Object or E vent ? When we want get current clicked dom object properties is need means we pass $event  param to corresponding method.    <input type ="anytype" ng-click="function_name($event)"> Example : <div ng-app="appClick">     <div ng-controller="appController">         <input type="button" value="Click" ng-click="showClick()" />         <input type="button" name="buttonClick" value="click+Event" ng-click="showClickEvent($event)" />     </div> </div> Java Script: var appCl