ArchiveJuly 2019

The Windows object

T

Windows are the most important interface elements in the browser, and JavaScript offers many ways to manipulate them. 1. Properties and methods of the window object. A browser (regardless of the name or manufacturer) is displayed in a window and everything the user does with the browser runs inside that window. All elements of a web page are also contained in that window. The “Window”...

Objects and classes in Java

O

Objects are crucial to building complex and efficient Java applications. When a developer creates a complex system, the process design begins, dividing the various project requirements into component applications. In the last phase, they are represented by objects in the application and are implemented in the code by class declarations. It might be difficult to see the benefits of this technique...

What are debuggers

W

Debuggers are sophisticated programs that allow the execution of other applications in a controlled manner; they allow the execution, observation and modification of another program. Debuggers use a variety of techniques related to fault isolation software, and tool support that generates programs and operating system. Debuggers behave against the debugging program similar to some interpreters...

What is ValGrind

W

Sometimes the unfortunate situation appears when a program begins to store memory for no obvious reason. The effect is usually noticed only after all of the computer’s memory fills up, and the system becomes unstable. The situation occurs when a programmer forgets to release dynamic memory for variables in the program. Sometimes, the working context can be quite complicated, and the number...

What are IDE

W

Integrated Development Environments (IDEs) are complex applications used by programmers, apps that provide access to tools. IDE runs a range from simple to incredibly sophisticated, some looking for an uninterrupted UI interface in an easy tool to maximize speed for smaller tasks, and others that provide multi-lingual support in more robust environments manipulation of more complicated...

What is The Linux Kernel

W

The Linux kernel is the most essential part of the OS, the one that works with the CPU and is the closest to the hardware level. Physically the Kernel is found in a file, and most of the time it is /boot/vmlinuz.version.no. In 1991, Linus Torvalds, a student at the University of Helsinki, Finland, began working on what was called kernel 0.02. No one believed then that this would be the basis for...

What is the run-level of a Linux OS

W

It represents the state in which the operating system is and operates at a given time. Example: A Linux operating system that enters run level 0 will stop, while if it enters run level 6 it is just restarting. Depending on the runlevel in which the operating system goes, there are certain facilities offered and certain running processes. A Linux operating system can be at in a given moment in a...

What is Regex

W

A regular expression, also called regex, is a way or a method of identifying a string from a given text according to certain rules. A regex is physically represented by a string formed from a bunch of characters. Rules: 1. The fundamental block is a single character and selects itself. 2. A bracket expression is a character list enclosed between “[” and “]” and describes a...

What are regular expressions

W

A regular expression or regex is a method of identifying a string from a given text according to certain rules. A string that consist of special characters physically represents a regex. Rules: 1. The fundamental block is a single character and selects itself. 2. A bracket expression is a list of characters between “[” and “]” and describes a certain character in that list...

Linux processes

L

One of the main tasks that the Kernel does is to allocate resources (RAM, CPU) to various applications. A process represents the elemental resource allocation unit in the system and runs in its own memory space. When a command is executed, a new process is created. The father of that process is the current shell. Process image is the program that runs and is loaded into RAM. There are differences...

Recent Posts

Archives

Categories