Skip to main content

Posts

Showing posts with the label programming

PHP guide- Everything about PHP

🔥 PHP GUIDE 🔥 ✨What is PHP❓ PHP is an acronym for "PHP: Hypertext Preprocessor". It is a widely-used, open source scripting language.PHP scripts are executed on the server And it is free to download and use.. ✨What is a PHP File❓ PHP files can contain text, HTML, CSS, JavaScript, and PHP code .PHP code is executed on the server, and the result is returned to the browser as plain HTML .PHP files have extension ".php" ✨What Can PHP Do❓ 💢PHP can generate dynamic page content 💢PHP can create, open, read, write, delete, and close files on the server 💢PHP can collect form data 💢PHP can send and receive cookies 💢PHP can add, delete, modify data in your database 💢PHP can be used to control user-access 💢PHP can encrypt data 💢With PHP you are not limited to output HTML. You can output images, PDF files, and even Flash movies. You can also output any text, such as XHTML and XML. ✨Why PHP❓ 💢PHP runs on various platforms (Windows, Linux, Unix, Mac OS X, et...

PHP guide- Everything about PHP

🔥 PHP GUIDE 🔥 ✨What is PHP❓ PHP is an acronym for "PHP: Hypertext Preprocessor". It is a widely-used, open source scripting language.PHP scripts are executed on the server And it is free to download and use.. ✨What is a PHP File❓ PHP files can contain text, HTML, CSS, JavaScript, and PHP code .PHP code is executed on the server, and the result is returned to the browser as plain HTML .PHP files have extension ".php" ✨What Can PHP Do❓ 💢PHP can generate dynamic page content 💢PHP can create, open, read, write, delete, and close files on the server 💢PHP can collect form data 💢PHP can send and receive cookies 💢PHP can add, delete, modify data in your database 💢PHP can be used to control user-access 💢PHP can encrypt data 💢With PHP you are not limited to output HTML. You can output images, PDF files, and even Flash movies. You can also output any text, such as XHTML and XML. ✨Why PHP❓ 💢PHP runs on various platforms (Windows, Linux, Unix, Mac OS X, et...

DIFFERENCES BETWEEN HTML AND HTML5

DIFFERENCES BETWEEN HTML AND HTML5 History of HTML The man behind HTML, Tim BernersLee Was putting together his first elementary browsing and authoring system for the web and created a quick little hypertext language that would serve his purpose. Comparison between HTML & HTML5 Now let's have a look at all the new elements thta were added in HTML5 and factors that make it better than HTML. Video & Audio  Thr first factor in HTML vs HTML5 is the introduction of audio and video in HTML5. There is no such concept of media  in case of HTML. But it is one of the integral part of the 5th version. Storage  The second factor of comparison in HTML vs HTML5 is Storage. In case of HTML, we can use the browser cache as the temporary storage whereas in case HTML5, application cache, web SQL database and web storage is used. Vector Graphics Vector Graphics was used in HTML with the help of various technologies such as ...

7 Tips for perfect Icons !!!

            7 Tips for perfect Icons !!!                01. SIMPLICITY A icon is a stylized representation. Don't worry that it's realistic, eliminate unnecessary details , use basic shapes and leave only the essentials that the icon is easily understandable. Sometimes the  icons have a more illustrative and therefore more detailed style. It's a matter of style!! 02. CONSISTENCY  It's essential that all the icons in your system have the same style to ensure perfect harmony (same strokes , fill, shapes , style , thickness , size) Define grid, principles and style to follow.   When you can, design them from scratch , otherwise don't mix icons from different sets with different styles. 03. CLARITY  Design "pixel perfect" icons, especially when they are very small. In this way they are always sharp and without blurred borders, beware of half pixels and avoid decimals...

7 Ways to make money as Developer !

7 Ways to make money as Developer ! 1. The most common is to have a job at a Company or Work as a freelancer for multiple clients. 2. Create Web, Mobile and Desktop apps where you can have ads and in-app-purchases. 3. Write and sell E-books and/or physical books. 4. Work on open source projects and get Donations and Sponsorships. 5. Create a YouTube channel on topics like Tutorials , Developer Lifestyle, Tips and tricks and news in the field, etc. 6. Create a Blog and Monetize it via ads , sponsorship and affiliate products or sell your own products. 7.   Participate in CODING challenges, participate in bug bounty program. Thanks for reading this article , share with your friends. If you want to give us your valuable suggestions or wanted to join our editorial panel Email us at  indiandevelopersclub@gmail.com

Why Data Structures are important?

Why Data Structures are important? Let's directly come to the point every company like Google, Microsoft, IBM and Amazon focus on data structures in there interviews. Data Structure is the most fundamental and building block concept in Computer science. Good knowledge of Data Structures is must to design and develop an efficient software systems. Real work goes into designing the perfect algorithm which improves efficiency and saves companies resources. That's why engineers with good data Structure are Highly paid. Note:- Our Programming team suggest to learn Data Structures and Algorithms for every Computer Graduate wanted to have job in Multinational companies like Google ,Microsoft, Amazon, Facebook etc. THANKS FOR READING THIS ARTICLE IF YOU LIKE PLEASE SHARE WITH YOUR FRIENDS.

8 Must Read Books For Developers

----8 Must Read Books For Developers---- Hello readers today we are going to recommend some books that every Developers should read atleast once. BOOKS ARE GIVEN BELOW:- 1- CLEAN ARCHITECTURE BY Robert C. Martin In this book you will learn the mistake that leads to design and architecture failure. You will learn some skills by using that you can improve your coding documentation for your reference. Right code with proper indentation. 2-The Art Of Computer Programming By Donald E Knuth A comprehensive overview of a wide variety of algorithms and the analysis of them. 3- Agile Software Development By Robert C. Martin   This book includs a unique collection of the latest Software Development methods. If you want to go for software development please read this book by Martin. He is one of the well known author for programming books. 4- Introduction To Algorithms By various writers(see in below pic) This book covers broad range of algorith...

Why flutter is future for App Development!!

Flutter:- What is flutter? - Flutter is the framework allowing you to build cross-platform apps which can run natively on Mobile app, Desktop and even embadded devices. Why flutter is the future , why not REACT NATIVE, IONIC KOTLIN, JAVA ,SWIFT or others Well there are 6 reasons:- 1 . Simple to use and learn:- Relative to other native and hybrid options. It also has an excellent documentation. 2.Fast Development:- With hot reload you can re-compile the app in seconds. No more multiple "build gradle". 3. Extremely Fast Performance:- You can get an App that performs as good as (even better than) native apps. 4. Popularity:- It has gained more popularity than React Native on both GitHub and StackOverflow,in a short time. 5. Best for MVP'S:- Best for startups, as you can cut the cost on developing for multiple platforms. But the biggest reason is 6.FUCHSIA OS:- A new OS currently developed by Google that has the potential to replace all other operating systems. It...

7 tips to improve your coding skills!

    7 tips to improve your typing skills 1.  Avoid abbreviating variables Abbreviating variables can be appropriate but they have to be universally recognised. Practice to choose the name that are easy to read and understand without ambiguity. 2. Limit Function Arguments Don't use like shown in below :- Use like below  3. Simplify Conditional Expression Easier to read and more pleasant to work with 4. Declare Variables Close To There Usage:- 5. Avoid unintended consequences in function:- 6. Function should be doing one thing:- - Function mustn't exceed 75 lines at most ,otherwise problem such as bugs and complexity start to pilling ; and by that I mean they should be doing one thing at a time. -  Because functions that are doing lots of things are more often design to multitask on such a big scale , and that is more likely exposed to failure. 7. AVOID ZOMBIE CODE!!! Use source co...

Most important git command every Developers should know!

Git command every Developers should know Now days git is necessary to learn for every Developers. To make it's easy there is some command that you should know. 1.Git -clone Cloning is a process of creating an identical copy of Git Remote Repository to the local Machine. When we clone the repository, all the files are downloaded to local Machine but Remote Git Repository remain unchanged 2.Git-Branch :- Branches are highly important in the git world. By using branches , several Developers are able to work in parallel on the same project simultaneously. We can use the git branch command for creating , listing and deleting branches. 3.Git-Checkout:- The git checkout command is use to check out of an existing branch and view another branch of code , but it can also be use to store files. 4.Git-Status:- The git status command give us all the information regarding current Branch. 5.Git-Add:- The git add command add a...