Tutorial by Topics: cf

async and await build on top of promises and generators to express asynchronous actions inline. This makes asynchronous or callback code much easier to maintain. Functions with the async keyword return a Promise, and can be called with that syntax. Inside an async function the await keyword can be...
This section provides an overview of what wcf is, and why a developer might want to use it. It should also mention any large subjects within wcf, and link out to the related topics. Since the Documentation for wcf is new, you may need to create initial versions of those related topics.
from django.contrib.postgres.fields import ArrayField class ArrayField(base_field, size=None, **options) FooModel.objects.filter(array_field_name__contains=[objects, to, check]) FooModel.objects.filter(array_field_name__contained_by=[objects, to, check]) Note that although the size param...
JSONField(**options) Django's JSONField actually stores the data in a Postgres JSONB column, which is only available in Postgres 9.4 and later. JSONField is great when you want a more flexible schema. For example if you want to change the keys without having to do any data migratio...
from django.contrib.postgres.fields import *RangeField IntegerRangeField(**options) BigIntegerRangeField(**options) FloatRangeField(**options) DateTimeRangeField(**options) DateRangeField(**options)
FooModel.objects.filter(field_name__key_name='value to query')
Big thanks to Pete Freitag for his CFScript Cheat Sheet Adam Cameron for CF 11: CFLOOP in CFScript is Very Broken (and it still is in CF 2016).
This section provides an overview of what specflow is, and why a developer might want to use it. It should also mention any large subjects within specflow, and link out to the related topics. Since the Documentation for specflow is new, you may need to create initial versions of those related to...
ParameterDetailsnameValue: string, Default: yesdbtypeValue: query/hql, Default: no, Remarks: when left blank, it's a normal querydatasourceDefault: no, Remarks: databaseparamsValue: structure, Default: no, Remarks: cfscript syntax only! In cfml they are written inside SLQ stament using <cfqueryp...
To serve static files (Images, CSS, JS files, etc.) use the express.static middleware function. Pass the name of the directory that contains the assets to express.static to serve the files directly. (Look to the Basic Example) You can use multiple directories, simply call the express.static mult...
Intrinsic Functions are included in the COBOL standard as a set of functions that return values from a specific algorithm, given zero or more arguments. These intrinsic functions are provided as a facility of the compiler and runtime system. The return items are temporary COBOL fields, and can be c...

Page 1 of 2