Tutorial by Topics

This should mirror some of the official Linux kernel docs, and post links to the latest versions of said documents in tovalds/linux on GitHub.com. The idea is to encourage individuals to make use of the MAINTAINERS files, linux-kernel mailing list, git log, and scripts/get-maintainer, so that they a...
Things to consider when we want to test our components with: Styles, Templates, Component classes.
Kibana is front end data visualization tool for elasticsearch. for installing kibana refer to the kibana documentation. For running kibana on localhost go to https://localhost:5601 and go to kibana console.
This section provides an overview of what sling is, and why a developer might want to use it. It should also mention any large subjects within sling, and link out to the related topics. Since the Documentation for sling is new, you may need to create initial versions of those related topics. ...
Batch are capable of running with VBS functionality further increasing their reliability. For example, VBS can deal with decimals, spaces, and some other advanced operations that cannot be done in batch. Also is capable of working with WMI and ActiveX objects.
The basic thing to remember here is that debugging a Hadoop MR job is going to be similar to any remotely debugged application in Eclipse. A debugger or debugging tool is a computer program that is used to test and debug other programs (the “target” program). It is greatly useful specially for a Ha...
Find out how to encrypt and decrypt data with Go. Keep in mind that this is not a course about cryptography but rather how to achieve it with Go.
A-Frame represents an entity via the <a-entity> element. As defined in the entity-component-system pattern, entities are placeholder objects to which we plug in components to provide them appearance, behavior, and functionality. <a-entity> // Consider the entity below. By itself, i...
A system, of the entity-component-system pattern, provides global scope, services, and management to classes of components. It provides public APIs (methods and properties) for classes of components. A system can be accessed through the scene element, and can help components interface with the globa...
In the entity-component-system pattern, a component is a reusable and modular chunk of data that we plug into an entity to add appearance, behavior, and/or functionality. In A-Frame, components modify entities which are 3D objects in the scene. We mix and compose components together to build comple...
A scene is represented by the <a-scene> element. The scene is the global root object, and all entities are contained within the scene. The scene inherits from the Entity class so it inherits all of its properties, its methods, the ability to attach components, and the behavior to wait for all...
A-Frame has an asset management system that allows us to place our assets in one place and to preload and cache assets for better performance. Games and rich 3D experiences traditionally preload their assets, such as models or textures, before rendering their scenes. This makes sure that assets are...
Animations and transitions in A-Frame are defined using the <a-animation> element as a child. The system is roughly based after the Web Animations specification. A-Frame uses tween.js internally. Attributes Here is an overview of animation attributes. We'll go into more detail below. ...
Mixins provide a way to compose and reuse commonly-used sets of component properties. They are defined using the <a-mixin> element and are placed in <a-assets>. Mixins should be set with an id, and when an entity sets that id as its mixin attribute, the entity will absorb all of the mixi...
blend-model component Loads a three.js format JSON model containing skeletal animation blending using THREE.BlendCharacter. This is mainly used to represent the hand and Vive controllers. <a-entity blend-model="#a-asset-item-selector"></a-entity> VALUES TypeDesc...
Primitives are just <a-entity>s under the hood. This means primitives have the same API as entities such as positioning, rotating, scaling, and attaching components. A-Frame provides a handful of elements such as <a-box> or <a-sky> called primitives that wrap the entity-component ...
This topic describes how to add partial-page update support to a Web page by using two Microsoft Ajax server controls: the ScriptManager control and the UpdatePanel control. These controls remove the requirement to refresh the whole page with each postback, which improves the user experience. ...

Page 399 of 428