Frazer
Frazer
wouldn't IDE setup be a bit opinionated?
Yeah, it would look something like this: ``` {{>EasySearch.Filter property="status" options=statusOptions class="select fancy-select"}} ``` Where: - property is the property being set - options is a map of the options...
Having problems meself with this
@dburles, I am sorry, it seemed this was a result of pub/sub. My solution was to put it in a null publication. ``` Meteor.publish(null, function () { return Meteor.users.find({ _id:...
Jenkins is pretty good. I don't think the choice is particularly significant for python because most python software seems to run well on every Ci (as it is so popular.)
do you mean accessing the current app in a module? ``` from flask import current_app as app print(app.config) ``` this is part of flask http://flask.pocoo.org/docs/0.10/api/#useful-functions-and-classes
yep yep, would be nice if this was on the README.md
I see. My solution was to change the javascript, instead making it select the id I specified. Perhaps adding a keyword argument in the field such as `element_id` might make...
+1, need this. It seems like with s3, if you copy the configuration to the other application, it will be able to upload it to your remote application, but with...
what about things like collection2 that modify Mongo.Collection?