$ sudo pip install awscli (or: sudo apt-get install awscli)
$ aws configure
You'll need to fill the following settings:
| var mongo_ids = [ | |
| ObjectId("596cc5e54060d2999dd2ffb2"), | |
| ... | |
| ]; | |
| db.getCollection('collection_name').remove({ | |
| _id: { | |
| $nin: mongo_ids | |
| } | |
| }) |
A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.
Running a local server for testing purposes:
| 0100 0002 0000 0300 0004 0000 5fa0 0060 | |
| a000 0500 0006 0000 4e34 004f 3400 0700 | |
| 0008 0000 aa10 00ab 1000 0900 000a 0000 | |
| 9e09 009f 0900 0b00 000c 0000 5a07 005b | |
| 0700 0d00 000e 0000 3301 00e1 ffff 00ff | |
| ff0f 0000 6900 006a 0000 1000 0011 0000 | |
| 1200 0013 0000 5a00 005b 0000 1400 0015 | |
| 0000 5400 0055 0000 1600 0017 0000 4a00 | |
| 004b 0000 1800 0019 0000 4700 0030 ffff | |
| 1a00 001b 0000 3d00 0030 ffff 1c00 001d |
| from pymongo import MongoClient | |
| MONGO_URI = '' | |
| DATABASE_NAME = '' | |
| client = MongoClient(MONGO_URI) | |
| db = client[DATABASE_NAME] | |
| collections = db.collection_names() | |
| def readable_size(file_size): |
| #!/usr/bin/env python | |
| """ | |
| ===================================== | |
| PEP 20 (The Zen of Python) by example | |
| ===================================== | |
| Usage: %prog | |
| :Author: Hunter Blanks, hblanks@artifex.org / hblanks@monetate.com |
| # pip install jsonschema | |
| import json | |
| from jsonschema import Draft4Validator | |
| lista_exemplo = [ | |
| {'attr1': 'A', 'attr2': 2, 'attr3': 3, 'attr4': 4}, | |
| {'attr1': 1, 'attr2': 2, 'attr3': 3, 'attr4': 4, 'attr5': 5}, | |
| {'attr1': 1, 'attr2': 2, 'attr3': 3, 'attr4': 4}, | |
| {'attr1': 1, 'attr2': 2, 'attr3': 3, 'attr4': 4}, |