E-scooter Nots
The question is should we get e-scooter for the van?
Requirements
- 10" tires
- Removable battery so we charge then inside the van.
These are just ideas and notes
The question is should we get e-scooter for the van?
9. Constants, parameters, numbers (subsidies, taxes, standards). 8. Regulating negative feedback loops. 7. Driving positive feedback loops. 6. Material flows and nodes of material intersection. 5. Information flows. 4. The rules of the system (incentives, punishments, constraints). 3. The distribution of power over the rules of the system. 2. The goals of the system. 1. The mindset or paradigm out of which the system — its goals, power structure, rules, its culture — arises. By Donella Meadows - http://donellameadows.org/archives/leverage-points-places-to-intervene-in-a-system/
The following came for the New York Times
Based on your risk profile, we believe you’re in line behind 118.5 million people across the United States.
When it comes to Connecticut, we think you’re behind 1.2 million others who are at higher risk in your state.
And in Litchfield County, you’re behind 56,500 others.
I got my first shot 2021-02-24 so I think I beat this time frame
Some where I saw that you should plan on giving 4% of your income.
By default, lh-brackets comes with a few ready-to-use mappings: * some are global and apply to all filetypes, * other are specialized for various filetypes: * C and C++ * HTML * Javascript * Markdown * Perl * Ruby * (La)TeX * VimL
The default mappings can be inhibited with the options
(bpg):cb_no_default_brackets
,
g:cb_enable_default
and
g:cb_disable_default
. See :h
:Brackets-default
.
The following mappings apply to all filetypes (unless specified otherwise, or specialized).
in mode | insert | visual | normal |
---|---|---|---|
keys | expands into .. | surrounds the selection with … 2 | surrounds the current … |
( |
(<cursor>)«» |
(<selection>) |
word |
[ |
[<cursor>]«» |
1 | 1 |
<leader>[ |
[<selection>] |
word | |
{ |
{<cursor>}«» 3 |
{<selection>} |
word |
<leader>{ |
{\n<selection>\n}«» |
line | |
" (1 double
quote) |
"<cursor>"«» |
1 | 1 |
"" |
"<selection>" |
word | |
' |
'<cursor>'«» 4 |
1 | 1 |
'' (2 single
quotes) |
'<selection>' |
word | |
<leader>< |
<<selection>> |
word |
<cr>
in the middle of a
pair of curly-brackets will expand into
{\n<cursor>\n}
.lh#ft#is_text()
«»
represents a marker/placeholder, it may
be expanded with other characters like
<++>
depending on your preferences..vimrc
by setting
g:cb_no_default_brackets
to 1 (default:
0)See lh-cpp documentation for the complete mappings table.
The main differences from the global table are: *
}
jumps to the next non whitespace/newline
character that is a }
if
g:cb_jump_over_newlines
equals to 1 (default
case). If you want to jump after the }
only if
it’s exactly right after the cursor, then set
g:cb_jump_over_newlines
to 0 in your
.vimrc
. See #26. When not jumping,
}
is simply inserted.
<localleader>{
surrounds the selection with a pair of curly brackets (and
newlines are introduced).<tt>
is recognized as an opening
bracket (I use it a lot to write Doxygen code
instead of \c
when I need to type several
things).;
will try to close parenthesis – set
(bpg):[{ft}_]semicolon_closes_bracket
to 0 to
inhibit this setting.<bs>
take care of semi-colons after
the closing curly-bracket – set
(bpg):[{ft}_]semicolon_closes_bracket
to 0 to
inhibit this setting.in mode | insert |
---|---|
keys | expands into .. |
< after
#include , template ,
typename or _cast |
<<cursor>>; |
{ after
struct , class ,
enum or union |
{<cursor>}; |
[ after a
[ |
[[<cursor>]]«» |
] before
]] |
close all
]] |
The main differences from the global table are: * Typing
<
twice results in <
, and
<>
results in >
. * In
visual mode, <localleader><
surrounds
the selection with a pair of angle brackets.
The main differences from the global table are: * In
visual mode, <localleader>{
surrounds the
selection with a pair of curly brackets (and newlines are
introduced).
New mappings are avaible.
in mode | insert | visual | normal |
---|---|---|---|
keys | expands into .. | surrounds the selection with … 2 | surrounds the current … |
_ |
_<cursor>_<++>
3 |
_<selection>_ |
word |
_ after a
_ |
__<cursor>__<++> |
n/a | n/a |
* |
*<cursor>*<++>
3,4 |
*<selection>* |
word |
* after a
* |
**<cursor>**<++> |
n/a | n/a |
` |
`<cursor>`<++> |
`<selection>` |
word |
~ |
<del><cursor></del>«» |
1 | 1 |
<localleader>~ |
<del><cursor></del> |
word |
*
is not expanded: it will serve to
start a new point in a bullet-list.<bs>
has been updated to handle the
new pairs of brackets.The main differences from the global table are: * In
visual mode, <localleader>{
surrounds the
selection with a pair of curly brackets (and newlines are
introduced). * In visual mode,
<localleader><
surrounds the selection
with a pair of angle brackets.
<C-X>{
replace
begin
-end
block by
{-}
, or the other way around.New and specialized mappings are avaible.
in mode | insert | visual | normal |
---|---|---|---|
keys | expands into .. | surrounds the selection with … 2 | surrounds the current … |
( |
(<cursor>)<++> |
(<selection>) |
word |
( after a
\ |
\(<cursor>\)<++> |
n/a | n/a |
{ |
{<cursor>}<++> |
{<selection>} |
word |
{ after a
\ |
\{<cursor>\}<++> |
n/a | n/a |
[ |
[<cursor>]<++> |
[<selection>] |
word |
[ after a
\ |
\[<cursor>\]<++> |
n/a | n/a |
<leader>[ |
[<selection>] |
word | |
$ |
$<cursor>$<++> |
1 | 1 |
<leader>$ |
$<selection>$ |
word |
<++>
is used as a
placeholder instead of «»
.New and specialized mappings are avaible.
in mode | insert | visual | normal |
---|---|---|---|
keys | expands into .. | surrounds the selection with … 2 | surrounds the current … |
( |
(<cursor>)«» |
(<selection>) |
word |
( after a
\ |
\(<cursor>\)«» |
n/a | n/a |
< |
<<cursor>>«» 5
|
1 | 1 |
<leader>< |
<<selection>> |
word | |
" |
"<cursor>"«» 6 |
1 | 1 |
if
, a
while
, or within comments. Still this rule
knowns an exception: within a string, or after a
\
, <
is always converted to
<>
. Does not handle special characters
like '<
and '>