Skip to main content

Posts

The road we all walk...

In a world of closed minds and hearts, He stands apart, a breath of fresh air,  With eyes wide open and a curious soul, He dares to explore what others declare. Surrounded by people who refuse to see, The beauty and wonder that lie ahead, He walks his own path, unafraid and free, With an open mind and an open heart, he treads. He listens to different perspectives, And welcomes diverse points of view, He learns from all, never selective, And embraces what is true. His mind is a canvas, always open, To the colors and strokes of life, He sees the world as a masterpiece unbroken, And revels in the magic of its strife. Though some may judge and criticize, And close their minds to what they don't know, He remains true to his beliefs and tries, To share the joy and wonder he has come to know. For in a world of closed minds and hearts, He is a beacon of hope and light, With his open mind, he sets apart, A path that's honest, true, and right.
Recent posts

Legacy vs Prophecy

If you want to know the prophecy... Hear the words from the legacy... In legacy of life comes vision Showing the way with new gates Painting new features in the horizon Touching the core with new moments  In legacy of code Values of yesterday finds new factor In the journey of enhancements  Forever strong shining base gives you the lead..

Angular - Q/A

1. What is angular? An open source framework for building single page applications using web technologies like HTML, CSS and JS. Angular is written in typescript and follow typescript syntax to write code. It helps developers to build applications for browsers, mobiles and desktops. 2. How many versions of angular released? From Angular 1 to Angular 11, In the whole they skipped version number 3.  Latest angular version is 14. And they have a 6 months of major release cycle.So we can expect a new version of angular in every 6 months. 3. What are the Difference between Angular 2+ and Angular 1.x? Angular 2+ Angular 1.x Based on Components Controller and Scope Mobile first Yes No Angular CLI Yes No Ways to define services Only by defining a class Factory, Service, Provider, Values and constants Runs Clinet-sed and Server-side Client-side Ways to initialize app Using bootstrapModule() function Using ng-app and angular.bootstrap function Su

White blue sky

#hometown#theni Sometimes you have no reason to stay, and realize that's a perfect argument to go. And that taking an entirely new way, is the sore but single method to grow. If you're washed-on abeyance's bight, and you feel decision's heavy heft: To choose the left where nothing's right, or go to the right where nothing's left.

When there is.... It matters!

When there is no wind... It matters to see a tree dance! When there is no way home... It matters to keep a thin memory! When there is no light... It matters to keep a lighter! When there is no sweetheart... It matters by surrounded with friends! When there is no sweet memory to remember... It matters to create them by own! When there is no achievement... It matters to grab an opportunity! When there is no plan... It matters to hit hard the goal! When there is a heart... It matters to keep it unbroken! When there is  no knowledge... It matters to get rich! When there is no path... It matters to keep thoughts clear! When there is   no hope... It matters to keep motivated! When there is no life... It matters to remember YOU ARE THE LIFE

Habits we should have to be a Successful Developer

Success is not an easy road trip, It is like mountain climbing. To make it we should be passionate and should be ready to go to any extent to improve ourselves. In the software development industry, We need to be good at certain habits even we have to change the very core of our habits, We should be prepared for that. The most impactful habits of successful developers that we can follow to reach the top of our career are listed below. 1. Thinking about the user point of view at all the time of end product We can't simply build something which is hard to understand for the user, and not giving a pleasant feel while they are using our end product. It is more important to set a clear goal of what you really want at the end of your project. 2.Paying attention to details Nobody can tell you that to write a perfect code or to complete a project successfully, We need to pay attention to the details of the client requirement and work accordingly. Nobody likes to work on a piece of code aga

Font-awesome Installation in Angular app.

 Font-Awesome + Angular using NPM Why NPM? Whenever we need a package in our Angular application, we'll be using npm to bring in the package. This is the way the Angular ecosystem is working. We need lots of packages to build something greater. Installing Font-awesome: This will bring the entire Font-awesome into our node_modules folder. The --save flag will add this dependency to our package.json Add Font-awesome in Angular app: For Angular applications, all starting configuration happens in the angular.json file. In that file, you'll find a styles array where we can add any CSS files we want to add to our project. You'll also find a script array where you can add scripts if you need that. ( Refer here for including Jquery and Bootstrap and here for Bulma CSS ) Restart the angular server (ng serve). Now you can able to use all the incredible icons of Font-awesome in your Angular application.