Tutorial by Topics

cursor: auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize...
Standard syntax: INSERT OVERWRITE TABLE tablename1 [PARTITION (partcol1=val1, partcol2=val2 ...) [IF NOT EXISTS]] select_statement1 FROM from_statement; INSERT INTO TABLE tablename1 [PARTITION (partcol1=val1, partcol2=val2 ...)] select_statement1 FROM from_statement; INSERT INTO T...
You need to make sure that every time you process a UTF-8 string, you do so safely. This is, unfortunately, the hard part. You'll probably want to make extensive use of PHP's mbstring extension. PHP's built-in string operations are not by default UTF-8 safe. There are some things you c...
box-shadow: none|h-shadow v-shadow blur spread color |inset|initial|inherit; ParametersDetailsinsetby default, the shadow is treated as a drop shadow. the inset keyword draws the shadow inside the frame/border.offset-xthe horizontal distanceoffset-ythe vertical distanceblur-radius0 by defau...
-- Create simple index CREATE INDEX index_name ON table_name(column_name1 [, column_name2, ...]) -- Create unique index CREATE UNIQUE INDEX index_name ON table_name(column_name1 [, column_name2, ...] -- Drop index DROP INDEX index_name ON tbl_name [algorithm_option | lock_option] ....
Perfect forwarding requires forwarding references in order to preserve the ref-qualifiers of the arguments. Such references appear only in a deduced context. That is: template<class T> void f(T&& x) // x is a forwarding reference, because T is deduced from a call to f() { g(s...
virtual void f(); virtual void g() = 0; // C++11 or later: virtual void h() override; void i() override; virtual void j() final; void k() final; Only non-static, non-template member functions can be virtual. If you are using C++11 or later, it is recommended to use ...
VersionMajor ChangesRelease Date3.02004-06-183.7.11SELECT max(x), y2012-03-203.8.3CTEs2014-02-11
CSS Variables allow authors to create reusable values which can be used throughout a CSS document. For example, it's common in CSS to reuse a single color throughout a document. Prior to CSS Variables this would mean reusing the same color value many times throughout a document. With CSS Variables ...
Simple classes RegexMatches[abc]Any of the following characters: a, b, or c[a-z]Any character from a to z, inclusive (this is called a range)[0-9]Any digit from 0 to 9, inclusive Common classes Some groups/ranges of characters are so often used, they have special abbreviations: RegexMatche...
Environment variables in dynamic inventory won't work, f.e. "ansible_ssh_private_key_file": $HOME/.ssh/key.pem" If the dynamic inventory server side passes $HOME for example, replace the variable in the client code (Python): json_input.replace("$HOME", os.environ.get(...
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...
Rust uses Result<T, E> values to indicate recoverable errors during execution. Unrecoverable errors cause Panics which is a topic of its own. Details of error handling is described in The Rust Programming Language (a.k.a The Book)
ParameterExplanationansible_connectionConnection type to the host. This can be the name of any of ansible’s connection plugins. SSH protocol types are smart, ssh or paramiko. The default is smart. Non-SSH based types are described in the next section.ansible_hostThe name of the host to connect to, ...

Page 69 of 428