Edited, memorised or added to reading queue

on 16-Jan-2024 (Tue)

Do you want BuboFlash to help you learning these things? Click here to log in or create user.

Overriding a package inside a scope
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

Overlays - NixOS Wiki
an be compiled with or without dependencies on X11 with the x11Support argument. Here is how you can remove X11 dependencies: final: prev: { pass = prev.pass.override { x11Support = false; }; } <span>Overriding a package inside a scope Some packages are not in the top level of nixpkgs but inside a scope. For example all GNOME packages are in the gnome attribute set and Xfce packages inside xfce. These attributes are o




The TaskJuggler User Manual
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

Index
Index The TaskJuggler User Manual Project Management beyond Gantt Chart drawing Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Chris Schlaeger <cs@taskjuggle




There is a second kind of identifier: the delimited identifier or quoted identifier. It is formed by enclosing an arbitrary sequence of characters in double-quotes ("). A delimited identifier is always an identifier, never a key word. So "select" could be used to refer to a column or table named “select”, whereas an unquoted select would be taken as a key word and would therefore provoke a parse error when used where a table or column name is expected. The example can be written with quoted identifiers like this: UPDATE "my_table" SET "a" = 5; Quoted identifiers can contain any character, except the character with code zero. (To include a double quote, write two double quotes.) This allows constructing table or column names that would otherwise not be possible, such as ones containing spaces or ampersands. The length limitation still applies. Quoting an identifier also makes it case-sensitive, whereas unquoted names are always folded to lower case. For example, the identifiers FOO, foo, and "foo" are considered the same by PostgreSQL, but "Foo" and "FOO" are different from these three and each other. (The folding of unquoted names to lower case in PostgreSQL is incompatible with the SQL standard, which says that unquoted names should be folded to upper case. Thus, foo should be equivalent to "FOO" not "foo" according to the standard. If you want to write portable applications you are advised to always quote a particular name or never quote it.)
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




fmt
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

fmt package - fmt - Go Packages
ffective Go Go User Manual Standard library Release Notes Packages Community Community Recorded Talks Meetups Conferences Go blog Go project Get connected Discover Packages Standard library fmt <span>fmt package standard library Version: go1.21.6 Opens a new window with list of versions in this module. Latest Latest This package is not in the latest version of its module. Go to latest P




Standard library
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

Standard library - Go Packages
cs Effective Go Go User Manual Standard library Release Notes Packages Community Community Recorded Talks Meetups Conferences Go blog Go project Get connected Discover Packages Standard library <span>Standard library Version: go1.21.6 Opens a new window with list of versions in this module. Latest Latest This package is not in the latest version of its module. Go to latest Published: Jan 9, 2024 Lic




The psql commands \df and \do can be used to list all available functions and operators, respectively.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




The notation used throughout this chapter to describe the argument and result data types of a function or operator is like this: repeat ( text, integer ) → text which says that the function repeat takes one text and one integer argument and returns a result of type text.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




The right arrow is also used to indicate the result of an example, thus: repeat('Pg', 4) → PgPgPgPg
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




If you are concerned about portability then note that most of the functions and operators described in this chapter, with the exception of the most trivial arithmetic and comparison operators and some explicitly marked functions, are not specified by the SQL standard. Some of this extended function- ality is present in other SQL database management systems, and in many cases this functionality is compatible and consistent between the various implementations.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




The usual logical operators are available: boolean AND boolean → boolean boolean OR boolean → boolean NOT boolean → boolean
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




SQL uses a three-valued logic system with true, false, and null, which represents “unknown”. Ob- serve the following truth tables: aba AND b a OR b TRUE TRUE TRUE TRUE TRUE FALSE FALSE TRUE TRUE NULL NULL TRUE FALSE FALSE FALSE FALSE FALSE NULL FALSE NULL NULL NULL NULL NULL aNOT a TRUE FALSE FALSE TRUE NULL NULL The operators AND and OR are commutative, that is, you can switch the left and right operands without affecting the result. (However, it is not guaranteed that the left operand is evaluated before the right operand.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




go command standard library
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

go command - cmd/go - Go Packages
ctive Go Go User Manual Standard library Release Notes Packages Community Community Recorded Talks Meetups Conferences Go blog Go project Get connected Discover Packages Standard library cmd go <span>go command standard library Version: go1.21.6 Opens a new window with list of versions in this module. Latest Latest This package is not in the latest version of its module. Go to latest Published: Jan 9, 2024 Lic