Tutorial by Topics: n

ABL (Advanced Business Language). Earlier known as Progress 4GL. Progress ABL is a programming language tied to the Progress OpenEdge environment, its database and surrounding utilities. This makes it a "fourth generation" programming language. Progress ABL is a strongly typed, late-b...
If you want to add an Admin panel to your rails application, it's just matter of minutes. Open gem file and writer gem 'rails_admin', '~> 1.0' bundle install rails g rails_admin:install it will ask you about the admin route if you want to go with the default press Enter. Now go app/conf...
The Google Drive API and Google Drive SDK platform gives developers access to a group of APIs along with client libraries, language-specific examples, and documentation to help you develop apps that integrate with Drive. The core functionality of Drive apps is to download and upload files in Goo...
When using async callback we need to consider scope. Especially if inside a loop. This simple article shows what not to do and a simple working example.
Universal Windows 10 App lifecycle consists of three different states: 1) Running - application is currentyl in use 2) Not running - application is closed and removed from the memory 3) Suspended - application state is frozen but it is still in memory [![enter image description here][1]][1] [1]:...
This section provides an overview of what tvos is, and why a developer might want to use it. It should also mention any large subjects within tvos, and link out to the related topics. Since the Documentation for tvos is new, you may need to create initial versions of those related topics.
Ajax uses the HTTP Protocol and can send requests using POST/GET methods from Client to Server. WebSocket is itself a protocol to communicate between Client and Server, distinct from HTTP. In Ajax when you send a request , server sends response for that request and connection ends. Using WebSocke...
SVG Fonts are not directly supported by Browsers any more. Still they are very convenient for programmatically generating fonts such as symbol fonts or barcode fonts. There are many tools out there that allow you to convert svg fonts to any other font format. Here is a list of tools you can use ...
This is section where you can find the details about the fields that is being used in Odoo 8 ParametersDescriptionstring="Name"Optional label of the fieldcompute="_compute_name_custom"Transform the fields into computed fieldsstore=TrueIf computed it will store the resultselect=T...
This is a description how you can create configuration for you own bundle in the /app/config/config.{yml,xml}
This client downloads a complete copy of the headers for all blocks in the entire block chain. This means that the download and storage requirements scale linearly with the amount of time since Bitcoin was invented.
Unit testing is an integral part of test-driven development, and an important feature for building any robust application. In Java, Unit testing is almost exclusively performed using external libraries and frameworks, most of which have their own documentation tag. This stub serves as a means of i...
mock.Setup(expression).Returns(value) //Whenever called the method in the expression will return value ParameterDetailsexpressionLambda expression that specifies the method invocation.

Page 246 of 329