First, extract the result set into a new collection.
Connect to the host mongo url.of.your.mongo.
Then run:
use dbName
db.getCollection('collectionName').aggregate(
[| source ~/antigen.zsh | |
| antigen use oh-my-zsh | |
| antigen bundle git | |
| # antigen bundle pip | |
| antigen bundle aws | |
| antigen bundle docker | |
| antigen bundle brew | |
| antigen bundle osx |
| # Settings for mac at HF | |
| source ~/antigen.zsh | |
| antigen use oh-my-zsh | |
| antigen bundle git | |
| # antigen bundle pip | |
| antigen bundle aws | |
| antigen bundle docker |
| HIVE_HOST=my.location.com | |
| HIVE_USERNAME=user.name | |
| HIVE_PASSWORD=my_passWord |
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style> | |
| .links line { | |
| stroke: #999; | |
| stroke-opacity: 0.6; | |
| } | |
| .nodes circle { | |
| stroke: #fff; |
| #!/usr/bin/env ruby | |
| require 'watir' | |
| def log (message) puts " #{message}" end | |
| def success (message) puts "+ #{message}" end | |
| def fail (message) puts "- #{message}" end | |
| def notify (message) | |
| success message.upcase | |
| system 'osascript -e \'Display notification "Bürgerbot" with title "%s"\'' % message | |
| rescue StandardError => e |