-
Visual Studio Code – Terminal (PowerShell) – how to copy text – Stack Overflow
“You can now automatically copy whenever you select text in the terminal:
“terminal.integrated.copyOnSelection”: true”
-
Case insensitive sorting in MongoDB – Stack Overflow
“db.collection.aggregate([
{ “$project”: {
“field”: 1,
“insensitive”: { “$toLower”: “$field” }
}},
{ “$sort”: { “insensitive”: 1 } }
])” -
$project (aggregation) — MongoDB Manual
“if you exclude fields, you cannot also specify the inclusion of fields, reset the value of existing fields, or add new fields”