Javascript
for
beginners

> Want to learn JavaScript but don't have the right resources?
Want to share your knowledge in your language!
You're in the right place.

Read. Create. Comment.

WRITE

ARTICLES BY: makica
Network

TLS / SSL / https


SSL ili Secure Sockets Layer predstavlja sigurnosni protokol komunikacije na internetu, a korisnici ga najčešće sreću u oblasti elektronske trgovine i elektronskog bankarsta. Nekada nije bio podržan od strane svih internet browsera i servera, ali danas jeste i predstavlja de facto sto se tice sigurnosti na internetu. Kako bi se u potpunosti iskoristili potencijali interneta kao medija komunikacije i poslovanja, bilo je neophodno uspostaviti stadarde koje web sajtovi moraju ispuniti, kako bi izgradili odnos poverenja sa korisnicima. Veliki broj kompanija koje posluju online, kao standard i okvir bezbednog poslovanja i bezbedne komunikacije na internetu, prihvatili su SSL sertifikate. Prvu specifikaciju SSL...

Read more
Created: 03/01/2019Comments:0Views: 7
CSS

Reflow i Repaint


Reflow refers to the process of recalculating the layout (triggering the layout process) when a part or the entire page changes. See the section titled "Browser: Layout," where this process is explained in detail. It is important for developers to understand how to reduce or minimize reflow time. Repaint is the process of re-rendering elements on the screen. Repaint can be triggered by a reflow process (when dimensions or positions of elements are recalculated) or by a style change (such as background-color, border-color, or visibility) without triggering a reflow. The repaint process involves executing the paint operation...

Read more
Created: 03/01/2019Comments:1Views: 5
Text

Character Encoding


In computer terminology, Character Encoding refers to a system in which each character is represented by a specific computer value, which varies depending on the encoding system. The term "encoding" in English means converting or transforming one value into another (e.g., a string into a binary value and vice versa). A character represents: Numbers Letters (uppercase or lowercase, from any language) Symbols: @ - _ ! ? # & / . , ...

Read more
Created: 03/01/2019Comments:1Views: 5