presss "SHIFT"+"TAB" to remove TAB indented lines.
Wednesday, October 14, 2020
Sunday, October 11, 2020
How to create composite key in mongodb
Please use below as reference to create composite key:
db.coll.createIndex({'k1':1,'k2':1},{unique:true});
{
"createdCollectionAutomatically" : false,
"numIndexesBefore" : 1,
"numIndexesAfter" : 2,
"ok" : 1
}
Saturday, October 10, 2020
Python Regex - Find pattern between two blocks
Examples:
(?<=<h4>).*(?=</h4>)
<h4>Act of attainder</h4>
match inner most multi groups:
(?<=<div class=\"wordbox)(?:(?!</h5></div></div>).)*
Subscribe to:
Comments (Atom)