Articles on Trending Technologies

Technical articles with clear explanations and examples

Use of Statistics service in SAP HANA

Anil SAP Gupta
Anil SAP Gupta
Updated on 30-Jul-2019 695 Views

In SAP HANA system, you use statistics serve as a key to internal monitoring infrastructure. You will be notified when a critical alert raised in your HANA environment and you can also get all the historical monitoring data for analysis.Statistical Server is responsible for collecting the data related to system resources, their allocation, and consumption of the resources and overall performance of HANA system.For more details, you can refer our SAP HANA core architecture topichttps://www.tutorialspoint.com/sap_hana/sap_hana_core_architecture.htm

Read More

Multiple .java files

Mohammad Mohtashim
Mohammad Mohtashim
Updated on 30-Jul-2019 484 Views

You can use Advanced IDE to use multiple files. Here is the link:https://www.tutorialspoint.com/online_java_compiler.php

Read More

Execute a script when a Web Storage area is updated in HTML?

Ankitha Reddy
Ankitha Reddy
Updated on 30-Jul-2019 178 Views

Use the onstorage attribute in HTML to execute on Web Storage area update. You can try to run the following code to implement onstorage attribute − Example HTML onstorage Welcome Demo text

Read More

What is a "translation unit" in C++

Srinivas Gorla
Srinivas Gorla
Updated on 30-Jul-2019 3K+ Views

A translation unit is any preprocessed source file.A translation unit is the basic unit of compilation in C++. This unit is made up of the contents of a single source file after it passes through preprocessing. It contains included any header files without blocks that are ignored using conditional preprocessing statements like ifdef, ifndef, etc.A single translation unit can be compiled into an object file, library, or executable program.

Read More

Difference between MessageChannel and WebSockets in HTML5

Smita Kapse
Smita Kapse
Updated on 30-Jul-2019 222 Views

Web Sockets is a next-generation bidirectional communication technology for web applications that operates over a single socket and is exposed via a JavaScript interface in HTML 5 compliant browsers. Once you get a Web Socket connection with the web server, you can send data from browser to server by calling a send() method, and receive data from server to browser by an onmessage event handler.Two way communication between the browsing contexts is called channel messaging. It is useful for communication across multiple origins.While creating messageChannel, it internally creates two ports to sending the data and forwarded to another browsing context. ...

Read More

How to change the look of Python operators?

Sai Subramanyam
Sai Subramanyam
Updated on 30-Jul-2019 202 Views

Python and most mainstream languages do not allow changing how operators look. If you're trying to replace something like a == b with a equals b, you can't do that. In Python the restriction is quite intentional — an expression such as a equals b would look ungrammatical to any reader familiar with Python.

Read More

Why can't we upload multiple files anymore at Coding Ground?

Mohammad Mohtashim
Mohammad Mohtashim
Updated on 30-Jul-2019 288 Views

There are multiple sections in coding ground. Please go at the bottom and check advanced IDE section and there you will find old version of Coding Ground which still allows to use multiple files.https://www.tutorialspoint.com/codingground.htm

Read More

Can we change operator precedence in Python?

Samual Sam
Samual Sam
Updated on 30-Jul-2019 547 Views

No this cannot be done. It's part of the Python language itself. That's how the language parses the expressions and builds parse and syntax trees. From the documentation:When performing mathematical operations with mixed operators, it is important to note that Python determines which operations to perform first, based on a pre-determined precedence. This precedence follows a similar precedence to most programming languages.

Read More

Is there a “not equal” operator in Python?

Pythonista
Pythonista
Updated on 30-Jul-2019 463 Views

In Python 2.x as well as != symbols are defined as 'not equal to' operators. In Python 3, operator is deprecated.

Read More

Using FFMPEG with HTML5 for online video hosting

Samual Sam
Samual Sam
Updated on 30-Jul-2019 1K+ Views

HTML5 enabled browsers to have a video element that you can use to play a video on your site. To let you know, flowplayer and other flash based video streaming players use the FLV format. It has the same encoding as H.264. FFMPEG can convert videos to FLV, feel free to work it with flowplayer. Use the flvtool2 for reading and writing FLV metadata from and to the file. Use the tools to create your videos and stream them through flowplayer.

Read More
Showing 60761–60770 of 61,248 articles
Advertisements