Skip to content

Instantly share code, notes, and snippets.

View rezhajulio's full-sized avatar
🏠
Working from home

Rezha Julio rezhajulio

🏠
Working from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am rezhajulio on github.
  • I am kimiamania (https://keybase.io/kimiamania) on keybase.
  • I have a public key ASA__uYzq9ZY4Qbdx6J4DOdcZVCQboKSv7QhYVkxoE-nlgo

To claim this, I am signing this object:

@rezhajulio
rezhajulio / mongo-commands.md
Created January 24, 2017 23:30 — forked from dimitardanailov/mongo-commands.md
MongoDB - Commands
# Get documents, where writters are Joel Coen and Ethan Coen.
db.movieDetails.find({ "writters" : ["Joel Coen", "Ethan Coen"] }).count()
# Get documents, where Jeff Bridges is playing leading role.
> db.movieDetails.find({ "actors.0": "Jeff Bridges" }).pretty()