Tutorial by Topics: pl

split regex target-string &key start end limit with-registers-p omit-unmatched-p sharedp => list lispworks:split-sequence separator-bag sequence &key start end test key coalesce-separators => sequences split-sequence delimiter sequence &key start end from-end count remove-empty...
{{ my_date_time|my_custom_filter }} {{ my_date_time|my_custom_filter(args) }} ParameterDetailsvalueThe value passed in by Jinja, to be filteredargsExtra arguments to be passed into the filter function
All algorithms are a list of steps to solve a problem. Each step has dependencies on some set of previous steps, or the start of the algorithm. A small problem might look like the following: This structure is called a directed acyclic graph, or DAG for short. The links between each node in ...
To select rows with out duplicates change the WHERE clause to "RowCnt = 1" To select one row from each set use Rank() instead of Sum() and change the outer WHERE clause to select rows with Rank() = 1
addChild(child) - adds a new item to this object's child tree as the topmost element. addChildAt(child, index) - adds a new item to this object's child tree at a specified position. The bottom-most item has index of 0. getChildAt(index) - returns a child with given index. getChildIndex(child) r...
render_template(template_name_or_list, **context)
[DllImport("Example.dll")] static extern void SetText(string inString); [DllImport("Example.dll")] static extern void GetText(StringBuilder outString); [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 32)] string text; [MarshalAs(UnmanagedType.ByValArray, SizeConst = 128)] ...
:split <file> :vsplit <file> :sp <- shorthand for split :vsp <- shorthand for vsplit When called from the command line, multiple files can be provided in the argument and vim will create one split for each file. When called from ex mode, only one file can be opened per ...
implicit val x: T = ??? Implicit classes allow custom methods to be added to existing types, without having to modify their code, thereby enriching types without needing control of the code. Using implicit types to enrich an existing class is often referred to as an 'enrich my library' pat...
ParameterDetailshandleurl to a custom image for the handleanglethe starting rotation for the element.rotationCenterXposition about which the element will be rotatedrotationCenterYposition about which the element will be rotatedstepan angle in degrees that the rotation will snap to if the shift key ...
void setAudioStreamType(int streamtype) void setDataSource(Context context, Uri uri) void prepare() void prepareAsync() void start() void stop() The MediaPlayer usage is mainly based on the State diagram: That means that in order to play audio/video a defined sequ...
Frame-based animation in Flash and AIR implement the following lifecycle: Event.ENTER_FRAME is dispatched Constructor code of children display objects are executed Event.FRAME_CONSTRUCTED is dispatched Frame actions in the MovieClip symbol is executed Frame actions in children MovieClip sym...
Three-dimensional plotting in matplotlib has historically been a bit of a kludge, as the rendering engine is inherently 2d. The fact that 3d setups are rendered by plotting one 2d chunk after the other implies that there are often rendering issues related to the apparent depth of objects. The core...
Let's clear up some misconceptions that beginners might make. You may have encountered functions such as: max :: (Ord a) => a -> a -> a max m n | m >= n = m | otherwise = n Beginners will typically view max :: (Ord a) => a -> a -> a as function that takes t...

Page 3 of 26