Edited, memorised or added to reading queue

on 21-May-2018 (Mon)

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

#python-built-in
map ( function, iterable, ... )

Return an iterator that applies function to every item of iterable, yielding the results.

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

2. Built-in Functions — Python 3.6.5 documentation
ed by locals() when it is called in function blocks, but not in class blocks. Note The contents of this dictionary should not be modified; changes may not affect the values of local and free variables used by the interpreter. <span>map (function, iterable, ...)¶ Return an iterator that applies function to every item of iterable, yielding the results. If additional iterable arguments are passed, function must take that many arguments and is applied to the items from all iterables in parallel. With multiple iterables, the iterator s




#python-built-in
repr ( object )

Return a string containing a printable representation of an object. For many types, this function makes an attempt to return a string that would yield an object with the same value when passed to eval() , otherwise the representation is a string enclosed in angle brackets that contains the name of the type of the object together with additional information often including the name and address of the object. A class can control what this function returns for its instances by defining a __repr__() method.

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

2. Built-in Functions — Python 3.6.5 documentation
s of property objects are now writeable. range (stop) range (start, stop[, step]) Rather than being a function, range is actually an immutable sequence type, as documented in Ranges and Sequence Types — list, tuple, range. <span>repr (object)¶ Return a string containing a printable representation of an object. For many types, this function makes an attempt to return a string that would yield an object with the same value when passed to eval() , otherwise the representation is a string enclosed in angle brackets that contains the name of the type of the object together with additional information often including the name and address of the object. A class can control what this function returns for its instances by defining a __repr__() method. reversed (seq)¶ Return a reverse iterator. seq must be an object which has a __reversed__() method or supports the sequence protocol (the __len__() method and the __getitem




#python-built-in
round ( number [ , ndigits ] )

Return number rounded to ndigits precision after the decimal point. If ndigits is omitted or is None , it returns the nearest integer to its input.

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

2. Built-in Functions — Python 3.6.5 documentation
reversed (seq)¶ Return a reverse iterator. seq must be an object which has a __reversed__() method or supports the sequence protocol (the __len__() method and the __getitem__() method with integer arguments starting at 0 ). <span>round (number[, ndigits])¶ Return number rounded to ndigits precision after the decimal point. If ndigits is omitted or is None , it returns the nearest integer to its input. For the built-in types supporting round() , values are rounded to the closest multiple of 10 to the power minus ndigits; if two multiples are equally close, rounding is done toward t




#python-built-in
reversed ( seq )

Return a reverse iterator . seq must be an object which has a __reversed__() method or supports the sequence protocol (the __len__() method and the __getitem__() method with integer arguments starting at 0 ).

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

2. Built-in Functions — Python 3.6.5 documentation
t contains the name of the type of the object together with additional information often including the name and address of the object. A class can control what this function returns for its instances by defining a __repr__() method. <span>reversed (seq)¶ Return a reverse iterator. seq must be an object which has a __reversed__() method or supports the sequence protocol (the __len__() method and the __getitem__() method with integer arguments starting at 0 ). round (number[, ndigits])¶ Return number rounded to ndigits precision after the decimal point. If ndigits is omitted or is None , it returns the nearest integer to its input.




#python-built-in
enumerate ( iterable, start=0 )

Return an enumerate object. iterable must be a sequence, an iterator , or some other object which supports iteration. The __next__() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the values obtained from iterating over iterable.

>>>
 >>> seasons = [ 'Spring' , 'Summer' , 'Fall' , 'Winter' ] >>> list ( enumerate ( seasons )) [(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')] >>> list ( enumerate ( seasons , start = 1 )) [(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')] 

Equivalent to:

 def enumerate ( sequence , start = 0 ): n = start for elem in sequence : yield n , elem n += 1 
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

2. Built-in Functions — Python 3.6.5 documentation
rs the result is (q, a % b) , where q is usually math.floor(a / b) but may be 1 less than that. In any case q * b + a % b is very close to a, if a % b is non-zero it has the same sign as b, and 0 <= abs(a % b) < abs(b) . <span>enumerate (iterable, start=0)¶ Return an enumerate object. iterable must be a sequence, an iterator, or some other object which supports iteration. The __next__() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the values obtained from iterating over iterable. >>> >>> seasons = ['Spring', 'Summer', 'Fall', 'Winter'] >>> list(enumerate(seasons)) [(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')] >>> list(enumerate(seasons, start=1)) [(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')] Equivalent to: def enumerate(sequence, start=0): n = start for elem in sequence: yield n, elem n += 1 eval (expression, globals=None, locals=None)¶ The arguments are a string and optional globals and locals. If provided, globals must be a dictionary. If provided, locals can




#python-built-in
enumerate ( iterable, start=0 )

Return an enumerate object.

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


Parent (intermediate) annotation

Open it
enumerate ( iterable, start=0 ) ¶ Return an enumerate object. iterable must be a sequence, an iterator , or some other object which supports iteration. The __next__() method of the iterator returned by enumerate() returns a tuple containi

Original toplevel document

2. Built-in Functions — Python 3.6.5 documentation
rs the result is (q, a % b) , where q is usually math.floor(a / b) but may be 1 less than that. In any case q * b + a % b is very close to a, if a % b is non-zero it has the same sign as b, and 0 <= abs(a % b) < abs(b) . <span>enumerate (iterable, start=0)¶ Return an enumerate object. iterable must be a sequence, an iterator, or some other object which supports iteration. The __next__() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the values obtained from iterating over iterable. >>> >>> seasons = ['Spring', 'Summer', 'Fall', 'Winter'] >>> list(enumerate(seasons)) [(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')] >>> list(enumerate(seasons, start=1)) [(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')] Equivalent to: def enumerate(sequence, start=0): n = start for elem in sequence: yield n, elem n += 1 eval (expression, globals=None, locals=None)¶ The arguments are a string and optional globals and locals. If provided, globals must be a dictionary. If provided, locals can




#python-built-in
The __next__() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the values obtained from iterating over iterable.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
enumerate ( iterable, start=0 ) ¶ Return an enumerate object. iterable must be a sequence, an iterator , or some other object which supports iteration. The __next__() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the values obtained from iterating over iterable. >>> >>> seasons = [ 'Spring' , 'Summer' , 'Fall' , 'Winter' ] >>> list ( enumerate ( seasons )) [(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')]

Original toplevel document

2. Built-in Functions — Python 3.6.5 documentation
rs the result is (q, a % b) , where q is usually math.floor(a / b) but may be 1 less than that. In any case q * b + a % b is very close to a, if a % b is non-zero it has the same sign as b, and 0 <= abs(a % b) < abs(b) . <span>enumerate (iterable, start=0)¶ Return an enumerate object. iterable must be a sequence, an iterator, or some other object which supports iteration. The __next__() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the values obtained from iterating over iterable. >>> >>> seasons = ['Spring', 'Summer', 'Fall', 'Winter'] >>> list(enumerate(seasons)) [(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')] >>> list(enumerate(seasons, start=1)) [(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')] Equivalent to: def enumerate(sequence, start=0): n = start for elem in sequence: yield n, elem n += 1 eval (expression, globals=None, locals=None)¶ The arguments are a string and optional globals and locals. If provided, globals must be a dictionary. If provided, locals can




Flashcard 2976623234316

Tags
#python-built-in
Question
[...] return an enumerate object.
Answer
enumerate ( iterable, start=0 )

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
enumerate ( iterable, start=0 ) ¶ Return an enumerate object.

Original toplevel document

2. Built-in Functions — Python 3.6.5 documentation
rs the result is (q, a % b) , where q is usually math.floor(a / b) but may be 1 less than that. In any case q * b + a % b is very close to a, if a % b is non-zero it has the same sign as b, and 0 <= abs(a % b) < abs(b) . <span>enumerate (iterable, start=0)¶ Return an enumerate object. iterable must be a sequence, an iterator, or some other object which supports iteration. The __next__() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the values obtained from iterating over iterable. >>> >>> seasons = ['Spring', 'Summer', 'Fall', 'Winter'] >>> list(enumerate(seasons)) [(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')] >>> list(enumerate(seasons, start=1)) [(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')] Equivalent to: def enumerate(sequence, start=0): n = start for elem in sequence: yield n, elem n += 1 eval (expression, globals=None, locals=None)¶ The arguments are a string and optional globals and locals. If provided, globals must be a dictionary. If provided, locals can







Flashcard 2976625855756

Tags
#python-built-in
Question
The __next__() method of the iterator returned by enumerate() returns a [...] containing a count (from start which defaults to 0) and the values obtained from iterating over iterable.
Answer
tuple

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
The __next__() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the values obtained from iterating over iterable.

Original toplevel document

2. Built-in Functions — Python 3.6.5 documentation
rs the result is (q, a % b) , where q is usually math.floor(a / b) but may be 1 less than that. In any case q * b + a % b is very close to a, if a % b is non-zero it has the same sign as b, and 0 <= abs(a % b) < abs(b) . <span>enumerate (iterable, start=0)¶ Return an enumerate object. iterable must be a sequence, an iterator, or some other object which supports iteration. The __next__() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the values obtained from iterating over iterable. >>> >>> seasons = ['Spring', 'Summer', 'Fall', 'Winter'] >>> list(enumerate(seasons)) [(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')] >>> list(enumerate(seasons, start=1)) [(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')] Equivalent to: def enumerate(sequence, start=0): n = start for elem in sequence: yield n, elem n += 1 eval (expression, globals=None, locals=None)¶ The arguments are a string and optional globals and locals. If provided, globals must be a dictionary. If provided, locals can







Flashcard 2976627428620

Tags
#python-built-in
Question
[...] return number rounded to ndigits precision after the decimal point.
Answer
round ( number [ , ndigits ] )

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
round ( number [ , ndigits ] ) ¶ Return number rounded to ndigits precision after the decimal point. If ndigits is omitted or is None , it returns the nearest integer to its input.

Original toplevel document

2. Built-in Functions — Python 3.6.5 documentation
reversed (seq)¶ Return a reverse iterator. seq must be an object which has a __reversed__() method or supports the sequence protocol (the __len__() method and the __getitem__() method with integer arguments starting at 0 ). <span>round (number[, ndigits])¶ Return number rounded to ndigits precision after the decimal point. If ndigits is omitted or is None , it returns the nearest integer to its input. For the built-in types supporting round() , values are rounded to the closest multiple of 10 to the power minus ndigits; if two multiples are equally close, rounding is done toward t







Flashcard 2976629787916

Tags
#python-built-in
Question
If ndigits in roundis[... or ...], it returns the nearest integer to its input.
Answer
omitted or None

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
round ( number [ , ndigits ] ) ¶ Return number rounded to ndigits precision after the decimal point. If ndigits is omitted or is None , it returns the nearest integer to its input.

Original toplevel document

2. Built-in Functions — Python 3.6.5 documentation
reversed (seq)¶ Return a reverse iterator. seq must be an object which has a __reversed__() method or supports the sequence protocol (the __len__() method and the __getitem__() method with integer arguments starting at 0 ). <span>round (number[, ndigits])¶ Return number rounded to ndigits precision after the decimal point. If ndigits is omitted or is None , it returns the nearest integer to its input. For the built-in types supporting round() , values are rounded to the closest multiple of 10 to the power minus ndigits; if two multiples are equally close, rounding is done toward t







Flashcard 2976632147212

Tags
#python-built-in
Question
[...] return a reverse iterator .
Answer
reversed ( seq )

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
reversed ( seq ) ¶ Return a reverse iterator . seq must be an object which has a __reversed__() method or supports the sequence protocol (the __len__() method and the __getitem__() method

Original toplevel document

2. Built-in Functions — Python 3.6.5 documentation
t contains the name of the type of the object together with additional information often including the name and address of the object. A class can control what this function returns for its instances by defining a __repr__() method. <span>reversed (seq)¶ Return a reverse iterator. seq must be an object which has a __reversed__() method or supports the sequence protocol (the __len__() method and the __getitem__() method with integer arguments starting at 0 ). round (number[, ndigits])¶ Return number rounded to ndigits precision after the decimal point. If ndigits is omitted or is None , it returns the nearest integer to its input.







#python-glossary
iterable

An object capable of returning its members one at a time. Examples of iterables include all sequence types (such as list , str , and tuple ) and some non-sequence types like dict , file objects , and objects of any classes you define with an __iter__() method or with a __getitem__() method that implements Sequence semantics.

Iterables can be used in a for loop and in many other places where a sequence is needed ( zip() , map() , …). When an iterable object is passed as an argument to the built-in function iter() , it returns an iterator for the object. This iterator is good for one pass over the set of values. When using iterables, it is usually not necessary to call iter() or deal with iterator objects yourself. The for statement does that automatically for you, creating a temporary unnamed variable to hold the iterator for the duration of the loop. See also iterator , sequence , and generator .

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

Glossary — Python 3.6.5 documentation
as the resources it relies on may not function anymore (common examples are library modules or the warnings machinery). The main reason for interpreter shutdown is that the __main__ module or the script being run has finished executing. <span>iterable An object capable of returning its members one at a time. Examples of iterables include all sequence types (such as list , str , and tuple ) and some non-sequence types like dict , file objects, and objects of any classes you define with an __iter__() method or with a __getitem__() method that implements Sequence semantics. Iterables can be used in a for loop and in many other places where a sequence is needed ( zip() , map() , …). When an iterable object is passed as an argument to the built-in function iter() , it returns an iterator for the object. This iterator is good for one pass over the set of values. When using iterables, it is usually not necessary to call iter() or deal with iterator objects yourself. The for statement does that automatically for you, creating a temporary unnamed variable to hold the iterator for the duration of the loop. See also iterator, sequence, and generator. iterator An object representing a stream of data. Repeated calls to the iterator’s __next__() method (or passing it to the built-in function next() ) return successive items in th




Flashcard 2976638700812

Tags
#python-glossary
Question
[...] is an object capable of returning its members one at a time.
Answer
iterable

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
iterable An object capable of returning its members one at a time. Examples of iterables include all sequence types (such as list , str , and tuple ) and some non-sequence types like

Original toplevel document

Glossary — Python 3.6.5 documentation
as the resources it relies on may not function anymore (common examples are library modules or the warnings machinery). The main reason for interpreter shutdown is that the __main__ module or the script being run has finished executing. <span>iterable An object capable of returning its members one at a time. Examples of iterables include all sequence types (such as list , str , and tuple ) and some non-sequence types like dict , file objects, and objects of any classes you define with an __iter__() method or with a __getitem__() method that implements Sequence semantics. Iterables can be used in a for loop and in many other places where a sequence is needed ( zip() , map() , …). When an iterable object is passed as an argument to the built-in function iter() , it returns an iterator for the object. This iterator is good for one pass over the set of values. When using iterables, it is usually not necessary to call iter() or deal with iterator objects yourself. The for statement does that automatically for you, creating a temporary unnamed variable to hold the iterator for the duration of the loop. See also iterator, sequence, and generator. iterator An object representing a stream of data. Repeated calls to the iterator’s __next__() method (or passing it to the built-in function next() ) return successive items in th







#python-glossary
Iterables can be used in a for loop and in many other places where a sequence is needed ( zip() , map() , …).
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
uch as list , str , and tuple ) and some non-sequence types like dict , file objects , and objects of any classes you define with an __iter__() method or with a __getitem__() method that implements Sequence semantics. <span>Iterables can be used in a for loop and in many other places where a sequence is needed ( zip() , map() , …). When an iterable object is passed as an argument to the built-in function iter() , it returns an iterator for the object. This iterator is good for one pass over the set of values. W

Original toplevel document

Glossary — Python 3.6.5 documentation
as the resources it relies on may not function anymore (common examples are library modules or the warnings machinery). The main reason for interpreter shutdown is that the __main__ module or the script being run has finished executing. <span>iterable An object capable of returning its members one at a time. Examples of iterables include all sequence types (such as list , str , and tuple ) and some non-sequence types like dict , file objects, and objects of any classes you define with an __iter__() method or with a __getitem__() method that implements Sequence semantics. Iterables can be used in a for loop and in many other places where a sequence is needed ( zip() , map() , …). When an iterable object is passed as an argument to the built-in function iter() , it returns an iterator for the object. This iterator is good for one pass over the set of values. When using iterables, it is usually not necessary to call iter() or deal with iterator objects yourself. The for statement does that automatically for you, creating a temporary unnamed variable to hold the iterator for the duration of the loop. See also iterator, sequence, and generator. iterator An object representing a stream of data. Repeated calls to the iterator’s __next__() method (or passing it to the built-in function next() ) return successive items in th




#python-glossary
When an iterable object is passed as an argument to the built-in function iter() , it returns an iterator for the object.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
classes you define with an __iter__() method or with a __getitem__() method that implements Sequence semantics. Iterables can be used in a for loop and in many other places where a sequence is needed ( zip() , map() , …). <span>When an iterable object is passed as an argument to the built-in function iter() , it returns an iterator for the object. This iterator is good for one pass over the set of values. When using iterables, it is usually not necessary to call iter() or deal with iterator objects yourself. The for state

Original toplevel document

Glossary — Python 3.6.5 documentation
as the resources it relies on may not function anymore (common examples are library modules or the warnings machinery). The main reason for interpreter shutdown is that the __main__ module or the script being run has finished executing. <span>iterable An object capable of returning its members one at a time. Examples of iterables include all sequence types (such as list , str , and tuple ) and some non-sequence types like dict , file objects, and objects of any classes you define with an __iter__() method or with a __getitem__() method that implements Sequence semantics. Iterables can be used in a for loop and in many other places where a sequence is needed ( zip() , map() , …). When an iterable object is passed as an argument to the built-in function iter() , it returns an iterator for the object. This iterator is good for one pass over the set of values. When using iterables, it is usually not necessary to call iter() or deal with iterator objects yourself. The for statement does that automatically for you, creating a temporary unnamed variable to hold the iterator for the duration of the loop. See also iterator, sequence, and generator. iterator An object representing a stream of data. Repeated calls to the iterator’s __next__() method (or passing it to the built-in function next() ) return successive items in th




Flashcard 2976646302988

Tags
#python-glossary
Question
When an iterable object is passed as an argument to [...] it returns an iterator for the object.
Answer
the built-in function iter()

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
When an iterable object is passed as an argument to the built-in function iter() , it returns an iterator for the object.

Original toplevel document

Glossary — Python 3.6.5 documentation
as the resources it relies on may not function anymore (common examples are library modules or the warnings machinery). The main reason for interpreter shutdown is that the __main__ module or the script being run has finished executing. <span>iterable An object capable of returning its members one at a time. Examples of iterables include all sequence types (such as list , str , and tuple ) and some non-sequence types like dict , file objects, and objects of any classes you define with an __iter__() method or with a __getitem__() method that implements Sequence semantics. Iterables can be used in a for loop and in many other places where a sequence is needed ( zip() , map() , …). When an iterable object is passed as an argument to the built-in function iter() , it returns an iterator for the object. This iterator is good for one pass over the set of values. When using iterables, it is usually not necessary to call iter() or deal with iterator objects yourself. The for statement does that automatically for you, creating a temporary unnamed variable to hold the iterator for the duration of the loop. See also iterator, sequence, and generator. iterator An object representing a stream of data. Repeated calls to the iterator’s __next__() method (or passing it to the built-in function next() ) return successive items in th







Flashcard 2976648662284

Tags
#python-glossary
Question
Iterables can be used in a for loop and in many other places where a [...] is needed
Answer
sequence

(for , zip() , map() , …).

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
Iterables can be used in a for loop and in many other places where a sequence is needed ( zip() , map() , …).

Original toplevel document

Glossary — Python 3.6.5 documentation
as the resources it relies on may not function anymore (common examples are library modules or the warnings machinery). The main reason for interpreter shutdown is that the __main__ module or the script being run has finished executing. <span>iterable An object capable of returning its members one at a time. Examples of iterables include all sequence types (such as list , str , and tuple ) and some non-sequence types like dict , file objects, and objects of any classes you define with an __iter__() method or with a __getitem__() method that implements Sequence semantics. Iterables can be used in a for loop and in many other places where a sequence is needed ( zip() , map() , …). When an iterable object is passed as an argument to the built-in function iter() , it returns an iterator for the object. This iterator is good for one pass over the set of values. When using iterables, it is usually not necessary to call iter() or deal with iterator objects yourself. The for statement does that automatically for you, creating a temporary unnamed variable to hold the iterator for the duration of the loop. See also iterator, sequence, and generator. iterator An object representing a stream of data. Repeated calls to the iterator’s __next__() method (or passing it to the built-in function next() ) return successive items in th







#python-built-in
repr ( object )

Return a string containing a printable representation of an object.

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


Parent (intermediate) annotation

Open it
repr ( object ) ¶ Return a string containing a printable representation of an object. For many types, this function makes an attempt to return a string that would yield an object with the same value when passed to eval() , otherwise the representation is a string encl

Original toplevel document

2. Built-in Functions — Python 3.6.5 documentation
s of property objects are now writeable. range (stop) range (start, stop[, step]) Rather than being a function, range is actually an immutable sequence type, as documented in Ranges and Sequence Types — list, tuple, range. <span>repr (object)¶ Return a string containing a printable representation of an object. For many types, this function makes an attempt to return a string that would yield an object with the same value when passed to eval() , otherwise the representation is a string enclosed in angle brackets that contains the name of the type of the object together with additional information often including the name and address of the object. A class can control what this function returns for its instances by defining a __repr__() method. reversed (seq)¶ Return a reverse iterator. seq must be an object which has a __reversed__() method or supports the sequence protocol (the __len__() method and the __getitem




Flashcard 2976652594444

Tags
#python-built-in
Question
[...] return a string containing a printable representation of an object.
Answer
repr ( object )

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
repr ( object ) ¶ Return a string containing a printable representation of an object.

Original toplevel document

2. Built-in Functions — Python 3.6.5 documentation
s of property objects are now writeable. range (stop) range (start, stop[, step]) Rather than being a function, range is actually an immutable sequence type, as documented in Ranges and Sequence Types — list, tuple, range. <span>repr (object)¶ Return a string containing a printable representation of an object. For many types, this function makes an attempt to return a string that would yield an object with the same value when passed to eval() , otherwise the representation is a string enclosed in angle brackets that contains the name of the type of the object together with additional information often including the name and address of the object. A class can control what this function returns for its instances by defining a __repr__() method. reversed (seq)¶ Return a reverse iterator. seq must be an object which has a __reversed__() method or supports the sequence protocol (the __len__() method and the __getitem







Flashcard 2976654953740

Tags
#python-built-in
Question
[...] returns an iterator that applies function to every item of iterable, yielding the results.
Answer
map ( function, iterable, ... )

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
map ( function, iterable, ... ) ¶ Return an iterator that applies function to every item of iterable, yielding the results.

Original toplevel document

2. Built-in Functions — Python 3.6.5 documentation
ed by locals() when it is called in function blocks, but not in class blocks. Note The contents of this dictionary should not be modified; changes may not affect the values of local and free variables used by the interpreter. <span>map (function, iterable, ...)¶ Return an iterator that applies function to every item of iterable, yielding the results. If additional iterable arguments are passed, function must take that many arguments and is applied to the items from all iterables in parallel. With multiple iterables, the iterator s







#tmux
PREFIX : resize-pane -U (Resizes the current pane upward)
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

tmux shortcuts &amp; cheatsheet · GitHub
g Panes You can also resize panes if you don’t like the layout defaults. I personally rarely need to do this, though it’s handy to know how. Here is the basic syntax to resize panes: PREFIX : resize-pane -D (Resizes the current pane down) <span>PREFIX : resize-pane -U (Resizes the current pane upward) PREFIX : resize-pane -L (Resizes the current pane left) PREFIX : resize-pane -R (Resizes the current pane right) PREFIX : resize-pane -D 20 (Resizes the current pane down by 20 cells) P




Flashcard 2976661507340

Tags
#tmux
Question
[...] (Resizes the current pane upward)
Answer
PREFIX : resize-pane -U

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
PREFIX : resize-pane -U (Resizes the current pane upward)

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
g Panes You can also resize panes if you don’t like the layout defaults. I personally rarely need to do this, though it’s handy to know how. Here is the basic syntax to resize panes: PREFIX : resize-pane -D (Resizes the current pane down) <span>PREFIX : resize-pane -U (Resizes the current pane upward) PREFIX : resize-pane -L (Resizes the current pane left) PREFIX : resize-pane -R (Resizes the current pane right) PREFIX : resize-pane -D 20 (Resizes the current pane down by 20 cells) P







#french #nouns
In English we use the words some or any or no article with nouns that cannot be counted, such as milk, coffee and tea. In French the partitive is used with these nouns and the partitive article cannot be omitted. The partitive is expressed by de plus the definite article. Note that de plus le ¼ du and de plus les ¼ des.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#french #nouns
Note that in general the partitive article is used in the singular. The plural des is the same as the plural indefinite article
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#french #nouns
The definite article is used with nouns in a general sense. The partitive is used with an undetermined quantity of a noncountable item. Il aime le cafe ´ . He likes coffee. (all coffee) Il boit du cafe ´ . He drinks coffee. (some coffee)
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#french #nouns
With nouns that can be counted, such as bananas (one banana), or items used in the plural (some bananas), the indefinite article is used. Je voudrais une poire. Je voudrais acheter des tomates et des bananes.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#french #nouns
Certain nouns can be count or noncount nouns depending on the way in which they are used. The definite, indefinite or partitive article can be used depending on the meaning. Voici le ga ˆ teau. Here is the cake. (the cake I bought yesterday) Voici un ga ˆ teau. Here is a cake. (a whole cake). Voici du ga ˆ teau. Here is some cake. (part of the cake, a piece of cake)
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#french #nouns
Normally, in negative sentences, the partitive article is replaced by de.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#french #nouns
The partitive is expressed by de plus the definite article
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
In English we use the words some or any or no article with nouns that cannot be counted, such as milk, coffee and tea. In French the partitive is used with these nouns and the partitive article cannot be omitted. The partitive is expressed by de plus the definite article. Note that de plus le ¼ du and de plus les ¼ des. <html>

Original toplevel document (pdf)

cannot see any pdfs




#french #nouns
In English we use the words some or any or no article with nouns that cannot be counted, such as milk, coffee and tea.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
In English we use the words some or any or no article with nouns that cannot be counted, such as milk, coffee and tea. In French the partitive is used with these nouns and the partitive article cannot be omitted. The partitive is expressed by de plus the definite article. Note that de plus le ¼ du and d

Original toplevel document (pdf)

cannot see any pdfs




#french #nouns
In French the partitive is used with these nouns and the partitive article cannot be omitted.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
In English we use the words some or any or no article with nouns that cannot be counted, such as milk, coffee and tea. In French the partitive is used with these nouns and the partitive article cannot be omitted. The partitive is expressed by de plus the definite article. Note that de plus le ¼ du and de plus les ¼ des.

Original toplevel document (pdf)

cannot see any pdfs




Flashcard 2976818007308

Tags
#french #nouns
Question
In English we use the words [...] with nouns that cannot be counted, such as milk, coffee and tea.
Answer
some or any or no article

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
In English we use the words some or any or no article with nouns that cannot be counted, such as milk, coffee and tea.

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 2976819580172

Tags
#french #nouns
Question
In French [...] is used with uncountable nouns and cannot be omitted.
Answer
the partitive

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
In French the partitive is used with these nouns and the partitive article cannot be omitted.

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 2976821939468

Tags
#french #nouns
Question
The partitive is expressed by [...]
Answer
de plus the definite article

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
The partitive is expressed by de plus the definite article

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 2976823512332

Tags
#french #nouns
Question
Note that in general the partitive article is used in [...].
Answer
the singular

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
Note that in general the partitive article is used in the singular. The plural des is the same as the plural indefinite article

Original toplevel document (pdf)

cannot see any pdfs







#french #nouns
The definite article is used with nouns in a general sense.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
The definite article is used with nouns in a general sense. The partitive is used with an undetermined quantity of a noncountable item. Il aime le cafe ´ . He likes coffee. (all coffee) Il boit du cafe ´ . He drinks coffee. (some coffee)

Original toplevel document (pdf)

cannot see any pdfs




#french #nouns
The partitive is used with an undetermined quantity of a noncountable item.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
The definite article is used with nouns in a general sense. The partitive is used with an undetermined quantity of a noncountable item. Il aime le cafe ´ . He likes coffee. (all coffee) Il boit du cafe ´ . He drinks coffee. (some coffee)

Original toplevel document (pdf)

cannot see any pdfs




Flashcard 2976829017356

Tags
#french #nouns
Question
The definite article is used with nouns in [...] sense.

He likes coffee.
Answer
a general

Il aime le café

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
The definite article is used with nouns in a general sense.

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 2976831376652

Tags
#french #nouns
Question
The partitive is used with [... of ...].
Answer
an undetermined quantity of a noncountable item

Il boit du café

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
The partitive is used with an undetermined quantity of a noncountable item.

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 2976833735948

Tags
#french #nouns
Question
With nouns that can be counted, such as bananas (one banana), or items used in the plural (some bananas), the [...] article is used.
Answer
indefinite

Je voudrais une poire.
Je voudrais acheter des tomates et des bananes.

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
With nouns that can be counted, such as bananas (one banana), or items used in the plural (some bananas), the indefinite article is used. Je voudrais une poire. Je voudrais acheter des tomates et des bananes.

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 2976836095244

Tags
#french #nouns
Question
Normally, in negative sentences, the partitive article is replaced by [...].


I don't have any bread.
Answer
de

J’ai du pain.
Je n’ai pas de pain.

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
Normally, in negative sentences, the partitive article is replaced by de.

Original toplevel document (pdf)

cannot see any pdfs







#french #nouns
If the sentence implies an affirmative idea or if you want to emphasize the noun, you may use the partitive article in negative sentences
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




Flashcard 2976840027404

Tags
#french #nouns
Question
If the sentence implies an affirmative idea or if you want to emphasize the noun, you may use the [...] in negative sentences

Don't you have any family here?
Answer
partitive article

N’avez-vous pas de la famille ici?

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
If the sentence implies an affirmative idea or if you want to emphasize the noun, you may use the partitive article in negative sentences

Original toplevel document (pdf)

cannot see any pdfs







#french #nouns
When an adjective precedes a noun in the plural, the partitive article becomes de. Singular Plural J’ai un bon livre. J’ai de bons livres.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#french #nouns
When an adjective and noun are very closely related, they are treated as one single noun and the partitive article is used. des jeunes filles girls des jeunes gens young people
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#french #nouns
The partitive becomes de after expressions of quantity such as the following: assez enough une boı ˆ te a box beaucoup a lot une bouteille a bottle
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#french #nouns
La plupart (most) and bien (many) are exceptions to the quantity rule of partitive usage. La plupart du temps, je travaille. Bien des fois, il fait des fautes
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#french #nouns
After expressions using de, such as avoir besoin de ( to need), avoir envie de (to desire to want), se passer de (to get along without), there is no partitive. J’ai de l’argent. But: J’ai besoin d’argent
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#french #nouns
Plusieurs (several) and quelques (a few) do not require the partitive. Study the following: J’ai beaucoup de livres. But: J’ai plusieurs livres. I have many books. I have several books. J’ai assez de livres. But: J’ai quelques livres. I have enough books. I have some books.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#french #nouns
In expressions of quantity de cannot be used before a pronoun. D’entre is usually used. plusieurs d’entre eux several of them quelques-uns d’entre nous some of us
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




Flashcard 2976853658892

Tags
#french #nouns
Question
When an adjective precedes a noun in the plural, the partitive article becomes [...].

I have some good books.
Answer
de

J’ai un bon livre. J’ai de bons livres.
This doesn't look like partitives, more like indefinite.

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
When an adjective precedes a noun in the plural, the partitive article becomes de. Singular Plural J’ai un bon livre. J’ai de bons livres.

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 2976856018188

Tags
#french #nouns
Question
When an adjective and noun are very closely related, they are treated as one single noun and the [...] is used.

Some young girls.
Answer
partitive article

des jeunes filles, des jeunes gens

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
When an adjective and noun are very closely related, they are treated as one single noun and the partitive article is used. des jeunes filles girls des jeunes gens young people

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 2976858377484

Tags
#french #nouns
Question
The partitive becomes [...] after expressions of quantity such assez, beaucoup...

He has many books.
Answer
de

Il a des livres.
Il a beaucoup de livres.

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
The partitive becomes de after expressions of quantity such as the following: assez enough une boı ˆ te a box beaucoup a lot une bouteille a bottle

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 2976861523212

Tags
#french #nouns
Question
[...] are exceptions to the quantity rule of partitive usage.
Answer
La plupart (most) and bien (many)

La plupart du temps, je travaille.
Bien des fois, il fait des fautes

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
La plupart (most) and bien (many) are exceptions to the quantity rule of partitive usage. La plupart du temps, je travaille. Bien des fois, il fait des fautes

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 2976863882508

Tags
#french #nouns
Question
After expressions [...] there is no partitive.

I need some money.
Answer
using de

J’ai de l’argent.
J’ai besoin d’argent. (just avoir besoin de + noun)

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
After expressions using de, such as avoir besoin de ( to need), avoir envie de (to desire to want), se passer de (to get along without), there is no partitive. J’ai de l’argent. But: J’ai besoin d’argent

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 2976866241804

Tags
#french #nouns
Question
quantifiers like​​​​​​​ [...] do not require the partitive.
Answer
Plusieurs (several) and quelques (a few)

J’ai beaucoup de livres.
J’ai plusieurs livres.

J’ai assez de livres.
J’ai quelques livres.

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
Plusieurs (several) and quelques (a few) do not require the partitive. Study the following: J’ai beaucoup de livres. But: J’ai plusieurs livres. I have many books. I have several books. J’ai assez de livres. But: J’ai quelques

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 2976868601100

Tags
#french #nouns
Question
In expressions of quantity de cannot be used before a pronoun. [...] is usually used.
Answer
D’entre

plusieurs d’entre eux, several of them
quelques-uns d’entre nous, some of us

From des(normal) to de(quantities), then to d'entre(quantities with pronouns)

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
In expressions of quantity de cannot be used before a pronoun. D’entre is usually used. plusieurs d’entre eux several of them quelques-uns d’entre nous some of us

Original toplevel document (pdf)

cannot see any pdfs







#tmux

list sessions:

tmux ls

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

tmux shortcuts &amp; cheatsheet · GitHub
tmux shortcuts & cheatsheet start new: tmux start new with session name: tmux new -s myname attach: tmux a # (or at, or attach) attach to named: tmux a -t myname <span>list sessions: tmux ls kill session: tmux kill-session -t myname Kill all the tmux sessions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill In tmux, hit t




#tmux

start new with session name:

tmux new -s myname

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

tmux shortcuts &amp; cheatsheet · GitHub
Raw tmux-cheatsheet.markdown tmux shortcuts & cheatsheet start new: tmux <span>start new with session name: tmux new -s myname attach: tmux a # (or at, or attach) attach to named: tmux a -t myname list sessions: tmux ls kill session: tmux kill-session -t myname Kill all the tmux session




#tmux

attach a session:

tmux a # (or at, or attach)

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

tmux shortcuts &amp; cheatsheet · GitHub
tmux-cheatsheet.markdown tmux shortcuts & cheatsheet start new: tmux start new with session name: tmux new -s myname <span>attach: tmux a # (or at, or attach) attach to named: tmux a -t myname list sessions: tmux ls kill session: tmux kill-session -t myname Kill all the tmux sessions: tmux ls | grep : | cut -d. -f1 | awk '




#tmux

attach to named:

tmux a -t myname
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

tmux shortcuts &amp; cheatsheet · GitHub
tmux-cheatsheet.markdown tmux shortcuts & cheatsheet start new: tmux start new with session name: tmux new -s myname attach: tmux a # (or at, or attach) <span>attach to named: tmux a -t myname list sessions: tmux ls kill session: tmux kill-session -t myname Kill all the tmux sessions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' |




#tmux

kill session:

tmux kill-session -t myname
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

tmux shortcuts &amp; cheatsheet · GitHub
tmux shortcuts & cheatsheet start new: tmux start new with session name: tmux new -s myname attach: tmux a # (or at, or attach) attach to named: tmux a -t myname list sessions: tmux ls <span>kill session: tmux kill-session -t myname Kill all the tmux sessions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill In tmux, hit the prefix ctrl+b (my modified prefix is ctrl+




#tmux-sessions
:new<CR> new session
s list sessions
$ name session
d detach session
:new<CR> new session
s list sessions
$ name session
d detach session
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on




#tmux-windows
Windows (tabs)
c create window
w list windows
n next window
p previous window
f find window
, name window
& kill window
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

tmux shortcuts &amp; cheatsheet · GitHub
essions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill In tmux, hit the prefix ctrl+b (my modified prefix is ctrl+a) and then: Sessions :new new session s list sessions $ name session <span>Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window Panes (splits) % vertical split " horizontal split o swap panes q show pane numbers x kill pane + break pane into window (e.g. to select text by mouse to copy) - resto




#tmux-copy
start copy mode: [
Start selection in copy mode: Space
end selection in copy mode: Enter
Past copied text: ]
quit copy mode: q
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

tmux shortcuts &amp; cheatsheet · GitHub
C-Down Scroll up C-Up or K C-Up Search again n n Search backward ? C-r Search forward / C-s Start of line 0 C-a <span>Start selection Space C-Space Transpose chars C-t Misc d detach t big clock ? list shortcuts : prompt Configurations Options: # Mouse support - set to on if you want to use th




#tmux-panes
Panes (splits)
\ vertical split
- horizontal split 
q show pane numbers
x kill pane
b break pane into window (e.g. to select text by mouse to copy)
⍽ space - toggle between layouts
<prefix> q (Show pane numbers, when the numbers show up type the key to goto that pane)
<prefix> { (Move the current pane left)
<prefix> } (Move the current pane right)
<prefix> z toggle pane zoom
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on




Flashcard 2976892194060

Tags
#tmux
Question

start new with session name:

[...] 

Answer

tmux new -s myname


statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
start new with session name: tmux new -s myname

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
Raw tmux-cheatsheet.markdown tmux shortcuts & cheatsheet start new: tmux <span>start new with session name: tmux new -s myname attach: tmux a # (or at, or attach) attach to named: tmux a -t myname list sessions: tmux ls kill session: tmux kill-session -t myname Kill all the tmux session







Flashcard 2976896650508

Tags
#tmux
Question

attach a session:

[...] 

Answer

tmux a # (or at, or attach)


statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
attach a session: tmux a # (or at, or attach)

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
tmux-cheatsheet.markdown tmux shortcuts & cheatsheet start new: tmux start new with session name: tmux new -s myname <span>attach: tmux a # (or at, or attach) attach to named: tmux a -t myname list sessions: tmux ls kill session: tmux kill-session -t myname Kill all the tmux sessions: tmux ls | grep : | cut -d. -f1 | awk '







Flashcard 2976898223372

Tags
#tmux
Question

attach to named:

[...]
Answer

tmux a -t myname

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
attach to named: tmux a -t myname

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
tmux-cheatsheet.markdown tmux shortcuts & cheatsheet start new: tmux start new with session name: tmux new -s myname attach: tmux a # (or at, or attach) <span>attach to named: tmux a -t myname list sessions: tmux ls kill session: tmux kill-session -t myname Kill all the tmux sessions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' |







Flashcard 2976899796236

Tags
#tmux
Question

list sessions:

[...command line...] 

Answer

tmux ls


statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
list sessions: tmux ls

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
tmux shortcuts & cheatsheet start new: tmux start new with session name: tmux new -s myname attach: tmux a # (or at, or attach) attach to named: tmux a -t myname <span>list sessions: tmux ls kill session: tmux kill-session -t myname Kill all the tmux sessions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill In tmux, hit t







Flashcard 2976901369100

Tags
#tmux
Question

kill session:

[...]
Answer

tmux kill-session -t myname

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
kill session: tmux kill-session -t myname

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
tmux shortcuts & cheatsheet start new: tmux start new with session name: tmux new -s myname attach: tmux a # (or at, or attach) attach to named: tmux a -t myname list sessions: tmux ls <span>kill session: tmux kill-session -t myname Kill all the tmux sessions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill In tmux, hit the prefix ctrl+b (my modified prefix is ctrl+







#tmux-sessions
:new<CR> new session
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it




#tmux-sessions
s list sessions
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
:new new session s list sessions $ name session d detach session :new new session s list sessions $ name session d detach session




#tmux-sessions
$ name session
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
:new new session s list sessions $ name session d detach session :new new session s list sessions $ name session d detach session




#tmux-sessions
d detach session

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


Parent (intermediate) annotation

Open it
:new new session s list sessions $ name session d detach session :new new session s list sessions $ name session d detach session




Flashcard 2976910019852

Tags
#tmux-sessions
Question
[...keyboard shortcut...] new session
Answer
:new<CR>

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it







Flashcard 2976911592716

Tags
#tmux-sessions
Question
[...] list sessions
Answer
s

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
s list sessions






Flashcard 2976913165580

Tags
#tmux-sessions
Question
[...] name session
Answer
$

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
$ name session






Flashcard 2976914738444

Tags
#tmux-sessions
Question
[...] detach session
Answer
d

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
d detach session






#tmux-windows
c create window
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
essions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill In tmux, hit the prefix ctrl+b (my modified prefix is ctrl+a) and then: Sessions :new new session s list sessions $ name session <span>Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window Panes (splits) % vertical split " horizontal split o swap panes q show pane numbers x kill pane + break pane into window (e.g. to select text by mouse to copy) - resto




#tmux-windows
w list windows
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
essions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill In tmux, hit the prefix ctrl+b (my modified prefix is ctrl+a) and then: Sessions :new new session s list sessions $ name session <span>Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window Panes (splits) % vertical split " horizontal split o swap panes q show pane numbers x kill pane + break pane into window (e.g. to select text by mouse to copy) - resto




#tmux-windows
n next window
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
essions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill In tmux, hit the prefix ctrl+b (my modified prefix is ctrl+a) and then: Sessions :new new session s list sessions $ name session <span>Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window Panes (splits) % vertical split " horizontal split o swap panes q show pane numbers x kill pane + break pane into window (e.g. to select text by mouse to copy) - resto




#tmux-windows
, name window
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
essions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill In tmux, hit the prefix ctrl+b (my modified prefix is ctrl+a) and then: Sessions :new new session s list sessions $ name session <span>Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window Panes (splits) % vertical split " horizontal split o swap panes q show pane numbers x kill pane + break pane into window (e.g. to select text by mouse to copy) - resto




#tmux-windows
& kill window
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
essions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill In tmux, hit the prefix ctrl+b (my modified prefix is ctrl+a) and then: Sessions :new new session s list sessions $ name session <span>Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window Panes (splits) % vertical split " horizontal split o swap panes q show pane numbers x kill pane + break pane into window (e.g. to select text by mouse to copy) - resto




Flashcard 2976929418508

Tags
#tmux-windows
Question
[...] create window
Answer
c

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
c create window

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
essions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill In tmux, hit the prefix ctrl+b (my modified prefix is ctrl+a) and then: Sessions :new new session s list sessions $ name session <span>Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window Panes (splits) % vertical split " horizontal split o swap panes q show pane numbers x kill pane + break pane into window (e.g. to select text by mouse to copy) - resto







Flashcard 2976930991372

Tags
#tmux-windows
Question
[...] list windows
Answer
w

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
w list windows

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
essions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill In tmux, hit the prefix ctrl+b (my modified prefix is ctrl+a) and then: Sessions :new new session s list sessions $ name session <span>Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window Panes (splits) % vertical split " horizontal split o swap panes q show pane numbers x kill pane + break pane into window (e.g. to select text by mouse to copy) - resto







Flashcard 2976932564236

Tags
#tmux-windows
Question
[...] next window
Answer
n

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
n next window

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
essions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill In tmux, hit the prefix ctrl+b (my modified prefix is ctrl+a) and then: Sessions :new new session s list sessions $ name session <span>Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window Panes (splits) % vertical split " horizontal split o swap panes q show pane numbers x kill pane + break pane into window (e.g. to select text by mouse to copy) - resto







Flashcard 2976934137100

Tags
#tmux-windows
Question
[...] name window
Answer
,

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
, name window

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
essions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill In tmux, hit the prefix ctrl+b (my modified prefix is ctrl+a) and then: Sessions :new new session s list sessions $ name session <span>Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window Panes (splits) % vertical split " horizontal split o swap panes q show pane numbers x kill pane + break pane into window (e.g. to select text by mouse to copy) - resto







Flashcard 2976935709964

Tags
#tmux-windows
Question
[...] kill window
Answer
&

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
& kill window

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
essions: tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill In tmux, hit the prefix ctrl+b (my modified prefix is ctrl+a) and then: Sessions :new new session s list sessions $ name session <span>Windows (tabs) c create window w list windows n next window p previous window f find window , name window & kill window Panes (splits) % vertical split " horizontal split o swap panes q show pane numbers x kill pane + break pane into window (e.g. to select text by mouse to copy) - resto







#tmux-panes
\ vertical split
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
Panes (splits) \ vertical split - horizontal split q show pane numbers x kill pane b break pane into window (e.g. to select text by mouse to copy) ⍽ space - toggle between layouts q (Show pane numbers, when the numb




#tmux-panes
- horizontal split
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
Panes (splits) \ vertical split - horizontal split q show pane numbers x kill pane b break pane into window (e.g. to select text by mouse to copy) ⍽ space - toggle between layouts q (Show pane numbers, when the numbers show up type t




#tmux-panes
q show pane numbers
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
Panes (splits) \ vertical split - horizontal split q show pane numbers x kill pane b break pane into window (e.g. to select text by mouse to copy) ⍽ space - toggle between layouts q (Show pane numbers, when the numbers show up type the key to goto that p




#tmux-panes
x kill pane
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
Panes (splits) \ vertical split - horizontal split q show pane numbers x kill pane b break pane into window (e.g. to select text by mouse to copy) ⍽ space - toggle between layouts q (Show pane numbers, when the numbers show up type the key to goto that pane) { (Move




#tmux-panes
z toggle pane zoom
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
b break pane into window (e.g. to select text by mouse to copy) ⍽ space - toggle between layouts q (Show pane numbers, when the numbers show up type the key to goto that pane) { (Move the current pane left) } (Move the current pane right) <span>z toggle pane zoom <span><body><html>




#tmux-panes
b break pane into window
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
Panes (splits) \ vertical split - horizontal split q show pane numbers x kill pane b break pane into window (e.g. to select text by mouse to copy) ⍽ space - toggle between layouts q (Show pane numbers, when the numbers show up type the key to goto that pane) { (Move the current pane left)




Flashcard 2976946720012

Tags
#tmux-panes
Question
[...] vertical split
Answer
\

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
\ vertical split






Flashcard 2976948292876

Tags
#tmux-panes
Question
[...] horizontal split
Answer
-

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
- horizontal split






Flashcard 2976949865740

Tags
#tmux-panes
Question
[...] show pane numbers
Answer
q

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
q show pane numbers






Flashcard 2976951438604

Tags
#tmux-panes
Question
[...] kill pane
Answer
x

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
x kill pane






Flashcard 2976953011468

Tags
#tmux-panes
Question
[...] break pane into window
Answer
b

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
b break pane into window






Flashcard 2976954584332

Tags
#tmux-panes
Question
[...] toggle pane zoom
Answer
z

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
z toggle pane zoom






#tmux-copy
start copy mode: [
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
start copy mode: [ Start selection in copy mode: Space end selection in copy mode: Enter Past copied text: ] quit copy mode: q

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
C-Down Scroll up C-Up or K C-Up Search again n n Search backward ? C-r Search forward / C-s Start of line 0 C-a <span>Start selection Space C-Space Transpose chars C-t Misc d detach t big clock ? list shortcuts : prompt Configurations Options: # Mouse support - set to on if you want to use th




#tmux-copy
Start selection in copy mode: Space
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
start copy mode: [ Start selection in copy mode: Space end selection in copy mode: Enter Past copied text: ] quit copy mode: q

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
C-Down Scroll up C-Up or K C-Up Search again n n Search backward ? C-r Search forward / C-s Start of line 0 C-a <span>Start selection Space C-Space Transpose chars C-t Misc d detach t big clock ? list shortcuts : prompt Configurations Options: # Mouse support - set to on if you want to use th




#tmux-copy
end selection in copy mode: Enter
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
start copy mode: [ Start selection in copy mode: Space end selection in copy mode: Enter Past copied text: ] quit copy mode: q

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
C-Down Scroll up C-Up or K C-Up Search again n n Search backward ? C-r Search forward / C-s Start of line 0 C-a <span>Start selection Space C-Space Transpose chars C-t Misc d detach t big clock ? list shortcuts : prompt Configurations Options: # Mouse support - set to on if you want to use th




#tmux-copy
Past copied text: ]
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
start copy mode: [ Start selection in copy mode: Space end selection in copy mode: Enter Past copied text: ] quit copy mode: q

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
C-Down Scroll up C-Up or K C-Up Search again n n Search backward ? C-r Search forward / C-s Start of line 0 C-a <span>Start selection Space C-Space Transpose chars C-t Misc d detach t big clock ? list shortcuts : prompt Configurations Options: # Mouse support - set to on if you want to use th




#tmux-copy
quit copy mode: q
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
start copy mode: [ Start selection in copy mode: Space end selection in copy mode: Enter Past copied text: ] quit copy mode: q

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
C-Down Scroll up C-Up or K C-Up Search again n n Search backward ? C-r Search forward / C-s Start of line 0 C-a <span>Start selection Space C-Space Transpose chars C-t Misc d detach t big clock ? list shortcuts : prompt Configurations Options: # Mouse support - set to on if you want to use th




Flashcard 2976964021516

Tags
#tmux-copy
Question
start copy mode: [...]
Answer
[

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
start copy mode: [

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
C-Down Scroll up C-Up or K C-Up Search again n n Search backward ? C-r Search forward / C-s Start of line 0 C-a <span>Start selection Space C-Space Transpose chars C-t Misc d detach t big clock ? list shortcuts : prompt Configurations Options: # Mouse support - set to on if you want to use th







Flashcard 2976965594380

Tags
#tmux-copy
Question
Start selection in copy mode: [...]
Answer
Space

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
Start selection in copy mode: Space

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
C-Down Scroll up C-Up or K C-Up Search again n n Search backward ? C-r Search forward / C-s Start of line 0 C-a <span>Start selection Space C-Space Transpose chars C-t Misc d detach t big clock ? list shortcuts : prompt Configurations Options: # Mouse support - set to on if you want to use th







Flashcard 2976967167244

Tags
#tmux-copy
Question
end selection in copy mode: [...]
Answer
Enter

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
end selection in copy mode: Enter

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
C-Down Scroll up C-Up or K C-Up Search again n n Search backward ? C-r Search forward / C-s Start of line 0 C-a <span>Start selection Space C-Space Transpose chars C-t Misc d detach t big clock ? list shortcuts : prompt Configurations Options: # Mouse support - set to on if you want to use th







Flashcard 2976968740108

Tags
#tmux-copy
Question
Past copied text: [...]
Answer
]

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
Past copied text: ]

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
C-Down Scroll up C-Up or K C-Up Search again n n Search backward ? C-r Search forward / C-s Start of line 0 C-a <span>Start selection Space C-Space Transpose chars C-t Misc d detach t big clock ? list shortcuts : prompt Configurations Options: # Mouse support - set to on if you want to use th







Flashcard 2976970312972

Tags
#tmux-copy
Question
quit copy mode: [...]
Answer
q

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
quit copy mode: q

Original toplevel document

tmux shortcuts &amp; cheatsheet · GitHub
C-Down Scroll up C-Up or K C-Up Search again n n Search backward ? C-r Search forward / C-s Start of line 0 C-a <span>Start selection Space C-Space Transpose chars C-t Misc d detach t big clock ? list shortcuts : prompt Configurations Options: # Mouse support - set to on if you want to use th







#python-built-in
dir ( [ object ] )

Without arguments, return the list of names in the current local scope. With an argument, attempt to return a list of valid attributes for that object.

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

2. Built-in Functions — Python 3.6.5 documentation
onary. The dict object is the dictionary class. See dict and Mapping Types — dict for documentation about this class. For other containers see the built-in list , set , and tuple classes, as well as the collections module. <span>dir ([object])¶ Without arguments, return the list of names in the current local scope. With an argument, attempt to return a list of valid attributes for that object. If the object has a method named __dir__() , this method will be called and must return the list of attributes. This allows objects that implement a custom __getattr__() or __geta




Flashcard 2976985779468

Tags
#python-built-in
Question

[...] return the list of names in the current local scope.

Answer
dir ( ) without arguments

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
dir ( [ object ] ) ¶ Without arguments, return the list of names in the current local scope. With an argument, attempt to return a list of valid attributes for that object.

Original toplevel document

2. Built-in Functions — Python 3.6.5 documentation
onary. The dict object is the dictionary class. See dict and Mapping Types — dict for documentation about this class. For other containers see the built-in list , set , and tuple classes, as well as the collections module. <span>dir ([object])¶ Without arguments, return the list of names in the current local scope. With an argument, attempt to return a list of valid attributes for that object. If the object has a method named __dir__() , this method will be called and must return the list of attributes. This allows objects that implement a custom __getattr__() or __geta







#python-built-in
One useful application of the second form of iter() is to read lines of a file until a certain line is reached.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

2. Built-in Functions — Python 3.6.5 documentation
r created in this case will call object with no arguments for each call to its __next__() method; if the value returned is equal to sentinel, StopIteration will be raised, otherwise the value will be returned. See also Iterator Types. <span>One useful application of the second form of iter() is to read lines of a file until a certain line is reached. The following example reads a file until the readline() method returns an empty string: with open('mydata.txt') as fp: for line in iter(fp.readline, ''): process_line(l