tutorial | Twise Random https://twiserandom.com A site about computer science . Sat, 28 Aug 2021 18:29:16 +0000 en-US hourly 1 https://wordpress.org/?v=5.8.1 https://twiserandom.com/wp-content/uploads/2019/08/cropped-abstract-color-32x32.jpg tutorial | Twise Random https://twiserandom.com 32 32 sizeof operator in c https://twiserandom.com/c/sizeof-operator-in-c/ Thu, 26 Aug 2021 19:48:50 +0000 https://twiserandom.com/?p=8189

What is the sizeof operator?

The sizeof operator, returns the size of an expression, or of an object type in C. An expression is for example 1 + 2, an object is any region of memory, and a … Read More

The post sizeof operator in c first appeared on Twise Random.]]>

What is the sizeof operator?

The sizeof operator, returns the size of an expression, or of an object type in C. An expression is for example 1 + 2, an object is any region of memory, and a … Read More

The post sizeof operator in c first appeared on Twise Random.]]>
ARM processor modes https://twiserandom.com/arm/arm-processor-modes/ Wed, 11 Aug 2021 22:28:05 +0000 https://twiserandom.com/?p=7616  

Let us start by first asking the question, of why do we need, the processor modes. Well simply put, a processor mode, is used to define a capability, so for example, the kind of features, instructions, or registers which … Read More

The post ARM processor modes first appeared on Twise Random.]]>
 

Let us start by first asking the question, of why do we need, the processor modes. Well simply put, a processor mode, is used to define a capability, so for example, the kind of features, instructions, or registers which … Read More

The post ARM processor modes first appeared on Twise Random.]]>
What is core foundation? https://twiserandom.com/apple/what-is-core-foundation/ Tue, 27 Jul 2021 14:19:25 +0000 https://twiserandom.com/?p=7174

A little bit of history

To understand what core foundation is, let us get back in history a little bit. It was the year 2000, and there were two ways to develop applications, for macOS 10.

On one hand, … Read More

The post What is core foundation? first appeared on Twise Random.]]>

A little bit of history

To understand what core foundation is, let us get back in history a little bit. It was the year 2000, and there were two ways to develop applications, for macOS 10.

On one hand, … Read More

The post What is core foundation? first appeared on Twise Random.]]>
What is NSObject ? https://twiserandom.com/apple/objective-c/what-is-nsobject/ Thu, 22 Jul 2021 12:59:14 +0000 https://twiserandom.com/?p=7070  

Many object oriented programming languages, have a class, from which all other classes extends.

In general, a class has a set of methods, and variables, which it defines. The variables being the data, and the methods, being the … Read More

The post What is NSObject ? first appeared on Twise Random.]]>
 

Many object oriented programming languages, have a class, from which all other classes extends.

In general, a class has a set of methods, and variables, which it defines. The variables being the data, and the methods, being the … Read More

The post What is NSObject ? first appeared on Twise Random.]]>
How to list windows, and their information, under Microsoft windows, Linux and macOS https://twiserandom.com/ui/how-to-list-windows-and-their-information-under-microsoft-windows-linux-and-macos/ Thu, 15 Jul 2021 07:47:28 +0000 https://twiserandom.com/?p=7021  

A window is just a place, where an application can do its drawing, like drawing a button, text or other stuff.

For Linux

On Linux or UNIX like systems, there is a tool called xwininfo, which can be … Read More

The post How to list windows, and their information, under Microsoft windows, Linux and macOS first appeared on Twise Random.]]>
 

A window is just a place, where an application can do its drawing, like drawing a button, text or other stuff.

For Linux

On Linux or UNIX like systems, there is a tool called xwininfo, which can be … Read More

The post How to list windows, and their information, under Microsoft windows, Linux and macOS first appeared on Twise Random.]]>
What is a property in X11? https://twiserandom.com/unix/x11/what-is-a-property-in-x11/ Sat, 10 Jul 2021 13:17:35 +0000 https://twiserandom.com/?p=6595  

In X11, a property simply has a name, a type, a format, a value, and is associated with a window.

There is a set of functions, provided by X11, which allows manipulating a property, and they … Read More

The post What is a property in X11? first appeared on Twise Random.]]>
 

In X11, a property simply has a name, a type, a format, a value, and is associated with a window.

There is a set of functions, provided by X11, which allows manipulating a property, and they … Read More

The post What is a property in X11? first appeared on Twise Random.]]>
What is an atom in X11? https://twiserandom.com/unix/x11/what-is-an-atom-in-x11/ Wed, 07 Jul 2021 15:20:32 +0000 https://twiserandom.com/?p=6551  

An atom in X11, is of type Atom, which is defined in the <X11/Xatom.h header, as :

typedef unsigned long Atom;		/* Also in Xdefs.h */

An atom is 32 bits, the reason, that long was chosen, … Read More

The post What is an atom in X11? first appeared on Twise Random.]]>
 

An atom in X11, is of type Atom, which is defined in the <X11/Xatom.h header, as :

typedef unsigned long Atom;		/* Also in Xdefs.h */

An atom is 32 bits, the reason, that long was chosen, … Read More

The post What is an atom in X11? first appeared on Twise Random.]]>
xset a tutorial https://twiserandom.com/unix/xset-a-tutorial/ Wed, 30 Jun 2021 20:23:51 +0000 https://twiserandom.com/?p=6460  

xset is a tool, which allows specifying certain configuration, for the X11 server. Mainly these configuration, are related to hardware, that the X11 server interacts with, so the keyboard, the mouse, the display, this being said, the display power … Read More

The post xset a tutorial first appeared on Twise Random.]]>
 

xset is a tool, which allows specifying certain configuration, for the X11 server. Mainly these configuration, are related to hardware, that the X11 server interacts with, so the keyboard, the mouse, the display, this being said, the display power … Read More

The post xset a tutorial first appeared on Twise Random.]]>
C++ integer types a tutorial ! https://twiserandom.com/cpp/cpp-integer-types-a-tutorial/ Mon, 22 Feb 2021 09:04:49 +0000 https://twiserandom.com/?p=6395  

The integer types in C++ are fundamental types . A fundamental type , has a mapping to hardware , so the operations performed on a fundamental type , are hardware performed .

Boolean , Characters , and integer types … Read More

The post C++ integer types a tutorial ! first appeared on Twise Random.]]>
 

The integer types in C++ are fundamental types . A fundamental type , has a mapping to hardware , so the operations performed on a fundamental type , are hardware performed .

Boolean , Characters , and integer types … Read More

The post C++ integer types a tutorial ! first appeared on Twise Random.]]>
Characters in lisp a tutorial https://twiserandom.com/lisp/characters-in-lisp-a-tutorial/ Sun, 21 Feb 2021 05:20:41 +0000 https://twiserandom.com/?p=6388  

Character repertoires in lisp

A character repertoire such as ascii , or Latin alphabet 1 , or unicode , is a set of characters .

Each character , such as a , in a repertoire , is assigned a Read More

The post Characters in lisp a tutorial first appeared on Twise Random.]]>
 

Character repertoires in lisp

A character repertoire such as ascii , or Latin alphabet 1 , or unicode , is a set of characters .

Each character , such as a , in a repertoire , is assigned a Read More

The post Characters in lisp a tutorial first appeared on Twise Random.]]>