Skip to main content

Posts

Showing posts from April, 2018

Featured post

Retired From International Cricket But Never From Our Hearts! We love you #MSDhoni ❤️

“Best Finisher”, “Captain Cool”, “Lightening fast hands”. As one sees these phrases, the first person that clicks to the mind is none other than MS Dhoni. MSD has always been given various names like these by his fans. Then the question arises that is he really justifying the names given to him? Or, they are just given on just 2 or 3 performances? We’ll try to figure it out in the sections to come. #MS #Dhoni - One of the finest mind the game of cricket has ever witnessed. His cool and calm composure on and off the field, and his approach to make things simpler has always #motivated me and taught me how to #deal with problems in life. His approach to focus on the #process rather than #outcome has always helped me in #developing new skills. Not a die hard fan of MS Dhoni initially, but got inspired by his very unique Leadership style. - Backing his team members: In spite of many initial failures, he backed Rohit Sharma and Virat Kohli continuously. Today, they are the best batsmen...

Free training lectures from lynda.com, linkedin.com, pluralsight, Udemy.com, PHLEARN, Laracast, CBT Nuggets, Teamtreehouse link.

Hundreds of Free training lectures series for Complete java, Javascript, Angular, Vue.js, Node.js, Express.js, React.js, PHP, Ruby, Python etc. Udemy Training videos torrent free to download. Linkedin Lynda Pluralsight  PHLEARN TeamTreeHouse CBT Nuggets Laracasts You can directly visit pluralsight to get free access to thousands of courses for 3 months when you signup using google ads. Same as pluralsight you can get free access to training videos from linkedin for 1 month as a trial.

JavaScript program to make the first letter of each word in a String as a capital letter.

Suppose we have following string variable. var sentence='program to make the first letter of each word in a string as a capital letter'; Now split the sentence into words using array split method. var uppercase=sentence.split(' ')                           .map(word => word.charAt(0).toUpperCase() +  word.slice(1))                           .join[' ']; console.log(uppercase); In above lines sentence.split(' ') separates word using space character and then map functions operate on each element.For each word, the charAt(0) is making the first character to uppercase and then word.slice(1) gives us all characters from the 2nd letter to last and we are combining the results from both and joining each word by a space character and then returning a new array as a result.

What is the difference between a region, an Availability Zone(AZ) and Edge Location in AWS ?

Region : A region is a physical location in the world which consists of two or more Availability Zone(AZ's).For example  AWS Asia Pacific (Mumbai) Region. Availability Zone(AZ): An AZ is one or more discrete data centres, each with redundant power, networking and connectivity, housed in separate facilities.So that if one AZ is not responding to the client request due to the network issue or some other problem then other AZ will respond to the client request.For example,  The new Mumbai region has two Availability Zones, raising the global total to 35 . It supports  Amazon Elastic Compute Cloud (EC2)   (C4 ,  M4 ,  T2 ,  D2 ,  I2 , and  R3  instances are available) and related services including  Amazon Elastic Block Store (EBS) ,  Amazon Virtual Private Cloud ,  Auto Scaling , and   Elastic Load Balancing . Edge Location: Edge locations are endpoints for AWS which are used for ...

Complete Java Notes in PDF format by Durga Sir ( DurgaSoft ).

Core Java (J2SE) Language Fundamentals   Operators    Declarations   Flow Control Interfaces   OOPs   Exception Handling   Multi-Threading   Inner Classes   Garbage Collections   java.lang Package : Object, String, StringBuffer, StringBuilder, Wrapper Classes, Autoboxing File IO Regular Expressions   Serialization   Collections  Framework Generics   Development   Enum Assertions   Internationalization JVM Architecture   JAVA 8 Features Note: Following three is going to be hyperlinked with pdf. JDBC ... Servlets ... JSP ... Spring ... Hibernate ... Design Patterns ...