Andrew Mao
Andrew Mao
Pull requests are what GitHub is all about :) You should definitely take the time to learn them!
I believe that being a good programmer means learning to do things the "right" way despite the constant parade of deadlines :)
I usually just do this by putting a Meteor template in a Bootstrap modal. I only use bootbox for simple alert, confirm type dialogs. I don't think it's worth the...
No, it doesn't - but we started a discussion of this a while ago in #21. I don't currently use Meteor on multiple instances, and so this feature is a...
No idea, but it has a thousand downloads so maybe you should give it a try and let me know how it is.
I think this is just something you need to test. If you enable the idle monitoring, it will definitely start incurring a higher load. The basic online/offline functionality is pretty...
Meteor does something similar by pruning stale login tokens from the database, search for `_expireTokens` in the following: > https://github.com/meteor/meteor/blob/devel/packages/accounts-base/accounts_server.js#L1044
That built-in function is not doing the same thing; I just pointed to it as an example that was doing something similar.
You can still publish it to the client. See the demo. The client's id is just `Meteor.connection._lastSessionId` on the client side.
Yeah, you just modify it (e.g. with a server method) like any other collection...it doesn't need to be in the database. You can also fork the package and make your...