Archive

Posts Tagged ‘move’

Ubuntu 20.04: move window buttons to left / right

September 21, 2021 Leave a comment

Problem

You want to move the window buttons (e.g. Close) to the left / right. How to do that?

Solution

I found a short video about it here (length: 45 sec).

To sum up: launch the app Tweaks, then Window Titlebars -> Placement.

Categories: ubuntu Tags: , , ,

[mongodb] move docs from one collection to another one

February 24, 2016 Leave a comment
var documentsToMove = db.collectionA.find({});
documentsToMove.forEach(function(doc) { 
    db.collectionB.insertOne(doc); 
    db.collectionA.remove(doc);
});

Tip from here.

Categories: mongodb Tags: