Tutorial by Topics: ode

Sails comes installed with a powerful ORM/ODM called Waterline, a datastore-agnostic tool that dramatically simplifies interaction with one or more databases. It provides an abstraction layer on top of the underlying database, allowing you to easily query and manipulate your data without writing v...
Doze Mode is a set of changes and rules that put your phone to sleep when idle. On Android 6.0 Marshmallow: Doze mode gets activated after a while the screen is off, the device is stationary and it's running on battery. As you can see in the diagram above, when Doze Mode gets activated, the d...
T4 Syntax <#@...#> //Declaring properties including templates, assemblies and namespaces and the language the template uses Plain Text //Declaring text that can be looped through for the files generated <#=...#> //Declaring Scripts <#+...#> //Declaring scriptlets <#...#&g...
A significant role in automating web sites and web applications involves identifying items on the screen and interacting with them. Items are found in Selenium through the use of locators and the By class. These locators and interactions are put inside Page Objects as a best practice to avoid duplic...
The CSS Object Model (CSSOM) is a specification on its own. The current draft can be found here: https://www.w3.org/TR/cssom-1/
Tensorflow distinguishes between saving/restoring the current values of all the variables in a graph and saving/restoring the actual graph structure. To restore the graph, you are free to use either Tensorflow's functions or just call your piece of code again, that built the graph in the first place...
xcodebuild [-project name.xcodeproj] -scheme schemename [[-destination destinationspecifier] ...] [-destination-timeout value] [-configuration configurationname] [-sdk [sdkfullpath | sdkname]] [action ...] [buildsetting=value ...] [-userdefault=value ...] OptionDescription-projectBuild the p...
Dependencies: If application uses third party libraries or cocoa pods, then those libraries or pods are needed to be install for test as well. Test class (Test Suit) extends XCTestCase. Get brushed up before starting: All test classes have two methods in common setUp & tearDown. ...
Practical examples of using Roslyn for source code transformations. Roslyn syntax trees are immutable. By calling a method like ReplaceNodes we generate a new node rather than modifying the existing one. This requires you to always change the object you have been working on.
To make your APK file as small as possible, you should enable shrinking to remove unused code and resources in your release build.

Page 6 of 15