Posts by user7986 • 141 points
3 posts
-
11
votes7
answers5450
viewsA: How to write easy-to-maintain, readable code?
First, you must "indent", indentation consists of organizing categories, codes and source code elements of any language. For this, you have to organize the codes, lines and use comments to assist…
-
-5
votes3
answers19793
viewsA: Functional Programming and Object-Oriented Programming. What are they and what are their main differences?
Object orientation aims to mirror the real world. For example: a car, we can insert it into the system, which would turn it into an object. This object has attributes (such as color, make, power,…
-
2
votes2
answers784
viewsQ: How to implement an SVG?
Well, the SVG is very important to the web, since it’s vector and I can resize it at will. It is an image format written in xml and is one of the image standards for web. But, when I try to…