Outlook can sometimes add a bit of spacing on the left and right side of a element that can cause some layout-related headaches. By using the vendor-specific mso-table-lspace and mso-table-rspace CSS properties, you can be rid of those spaces and continue on to tackle the million other problems cau...
More than one queue may be created. Each queue can be thought of as a separate branch.
hg qqueue --create foo // Create a new queue called "foo"
hg qqueue --list // List all queues
hg qqueue --active // Print name of active queue
hg qqueue --rename bar // Rename active queue ...
Functional tests are best described as tests for your user stories. If you've dealt with user stories before they normally follow the following pattern:
As a [role], I want to [desire], so that [benefit/desired outcome]
For the following examples we'll use this user story as an example:
As a Du...
If we want to test JavaScript on a website, we'll need to use something a bit more powerful than Goutte (which is just cURL via Guzzle). There are a couple of options such as ZombieJS, Selenium and Sahi. For this example I'll use Selenium.
First you'll need to install the drivers for Mink:
$ compo...
From documentation:
The HttpContext.Items collection is the best location to store data that is only needed while processing a given request. Its contents are discarded after each request. It is best used as a means of communicating between components or middleware that operate at different poi...
The wheel collider inside unity is built upon Nvidia's PhysX wheel collider, and therefore shares many similar properties. Technically unity is a "unitless" program, but to make everything make sense, some standard units are required.
Basic Properties
Mass - the weight of the wheel in ...
Django 1.10 introduced a new middleware style where process_request and process_response are merged together.
In this new style, a middleware is a callable that returns another callable. Well, actually the former is a middleware factory and the latter is the actual middleware.
The middleware facto...
DateTimeField is used to store date time values.
class MyModel(models.Model):
start_time = models.DateFimeField(null=True, blank=True)
created_on = models.DateTimeField(auto_now_add=True)
updated_on = models.DateTimeField(auto_now=True)
A DateTimeField has two optional parameters:...
A global RegExp match can be performed using preg_match_all. preg_match_all returns all matching results in the subject string (in contrast to preg_match, which only returns the first one).
The preg_match_all function returns the number of matches. Third parameter $matches will contain matches in f...
The predicate function matches can be used to evaluate strings on the fly without use of any object declarations.
IF matches( val = 'Not a hex string'
regex = '[0-9a-f]*' ).
cl_demo_output=>display( 'This will not display' ).
ELSEIF matches( val = '6c6f7665'
reg...
As already pointed out in other pitfalls, catching all exceptions by using
try {
// Some code
} catch (Exception) {
// Some error handling
}
Comes with a lot of different problems. But one perticular problem is that it can lead to deadlocks as it breaks the interrupt system when writ...
The latest version of the Oracle Java style guide mandates that the "then" and "else" statements in an if statement should always be enclosed in "braces" or "curly brackets". Similar rules apply to the bodies of various loop statements.
if (a) { //...
Create blank Multi-Device (Firemonkey) application.
Drop Rectangle on Form.
In Object inspector window (F11) find RotationAngle click on drop
down button, and select "Create New TFloatAnimation".
Object inspector window is automatically switched to a newly added
TFloatAnimation, you...
Scaling to fit
Means that the whole image will be visible but there may be some empty space on the sides or top and bottom if the image is not the same aspect as the canvas. The example shows the image scaled to fit. The blue on the sides is due to the fact that the image is not the same aspect as ...
Following are the Prerequisites for installing Cookiecutter:
pip
virtualenv
PostgreSQL
Create a virtualenv for your project and activate it:
$ mkvirtualenv <virtualenv name>
$ workon <virtualenv name>
Now install Cookiecutter using:
$ pip install cookiecutter
Change dire...
Unlike most other JavaScript objects, symbols are not automatically converted into a string when performing concatenation.
let apple = Symbol('Apple') + ''; // throws TypeError!
Instead, they have to be explicitly converted into a string when necessary, (for example, to get a textual description...
Server-Side JavaScript
Native JSON
Samplestack Sample Application
Temporal Documents
REST Management
API Improvements
More Semantics Features, Including SPARQL 1.1, Inferencing, and SPARQL UPDATE
Node.js Client API
REST and Java Client API Improvements
Enhanced HTTP Server Features
Flexi...