Skip to main content

Posts

Web Development Roadmaps

Framework Roadmap: Chart created by GitHub user Kamranahmedse:  https://github.com/kamranahmedse Backend Roadmap:                                           Chart created by GitHub user Kamranahmedse:   https://github.com/kamranahmedse

What is Java Script(JS)?

Definition:      JavaScript is a scripting or programming language that allows you to implement complex things on web pages — every time a web page does more than just sit there and display static information for you to look at — displaying timely content updates, interactive maps, animated 2D/3D graphics, scrolling video jukeboxes, etc. — you can bet that JavaScript is probably involved. It is the third layer of the layer cake of standard web technologies, two of which ( HTML  and  CSS ) we have covered in much more detail in other parts of the Learning Area. Images from Developer.mozilla.org HTML  is the markup language that we use to structure and give meaning to our web content, for example defining paragraphs, headings, and data tables, or embedding images and videos in the page. CSS  is a language of style rules that we use to apply styling to our HTML content, for example setting background colors and fonts, and laying out our c...

What is Google Fonts?

915  Google Fonts:       Currently there are 915 google fonts are available and these all are free to use and make   your websites beautiful to the reader. And here is the screenshot of the page 

What is Comand Line Interface (CLI)?

Definition - What does   Command Line Interface (CLI)   mean?         Command line interface (CLI) is a text-based interface that is used to operate software and operating systems while allowing the user to respond to visual prompts by typing single commands into the interface and receiving a reply in the same way. CLI is quite different from the graphical user interface (GUI) that is presently being used in the latest operating system Windows Example C:\>npm install mysql Mac OS Example > npm install mysql Basic Linux CLI Commands: Command Description ls List the directory (folder) system. cd  pathname Change directory (folder) in the file system. cd .. Move one level up (one folder) in the file system. cp Copy a file to another folder. mv Move a file to another folder. mkdir Creates a new directory (folder). rmdir Remove a directory (folder). clear Clears the CLI window. exit Closes the CLI window. man  c...

JS examples

Some useful Js Examples:      If we have an array like        Eg:        const animals = ['Hen', 'elephant', 'llama', 'leopard', 'ostrich', 'Whale', 'octopus', 'rabbit', 'lion',                                            'dog'];                And we want to print only the first numbers in the array  follow the code below,       const secretMessage = animals.map(animal => animal[0]);        console.log(secretMessage.join(' '));                             OUTPUT:          HELLOWORLD      If we want to print only first letters of a number  Follow the code below      EG:      ...

How to Localhost in laptop

Configure localhost in laptop(linux):        First of all when i created my website, i am attached a database to the webpage i.e., when a person fills the data in the site it has to go to the database, i will tell in another post how to connect webpage to the database. Now we came to know what is localhost?          In my words localhost mean we have to run our website in our computer , and we have to act our computer like a server.In other words a local server which is deployed in your own computer .  Basic Knowledge:         To understand this you have a basic knowledge about what is port number and what is ip.        and how a network is formed .  Step1: open terminal by clicking ctrl+alt+t  Step 2: Change the directory to the folder at where your html files are deployed by clicking cd <folder name> for example : cd web (where your folder present)  Note :- Dont ...

Introduction

All the things i've created are based on only linux operating system so i try to write about windows in the future.   And all posts are based on the linux operating system,so random topics are updated daily.   And there no flow in this, so every thing i've written will be explained based on my experience i had in this. So if there is any mistake please ignore it. And i am not familiar with english so please ignore spelling mistakes and gramatical errors.