For do this you need use the command : ssh-keygen Example: Observation: all keys are in ~/.ssh directory.
Author: camilamacedo86
Meteor JS: How to set up templates in html to send email ?
For do this you can use the package : meteorhacks:ssr https://atmospherejs.com/meteorhacks/ssr Example : To call : ( My mail.js file … More
Meteor JS : How to make a helper method is triggered after a certain event?
When you want the tele of information are changed after some event or some operation you can use the Deps.Dependency. … More
PostgreSQL : How to do research using geolocation in PostgreSQL?
Use PostGIS for do this. You can with PostGIS consult by geographic coordinates using as latitude and longitude, or even … More
Meteor JS : Learn Meteor online with Coursera
If you want learn Meteor JS don’t lose your time. You can make a free curse and don’t pay for do this … More
Think : TED TALK – Ken Robinson: Do schools kill creativity?
This video is truly interesting . It causes us to reflect about various aspects, especially the fact that we are … More
Meteor Js : Nice package to show a simple component of date
If you want a simple componente like as : You can : $ meteor add rajit:bootstrap3-datepicker And use in this way … More
MeteorJs : How to making operations when the template is on or after render ?
Use : Template.MyNameTample.onRendered Example : Template.PaymentResult.onRendered(function() { $(window).scrollTop(0); var instance = Template.instance(); instance.autorun(function() { processando.set(true); run(); }); }); Here in this … More
Javascript: How to wait N seconds to do something ?
You can use : setTimeout Full Example: function run() { setTimeout(afterSeconds, 10000); } function afterSeconds() { //{…DO SOMWTHING} }
Meteor Js : How to show an animation of an engine running while processing?
For do this you can use the package : sacha:spin You need : meteor add sacha:spin And add in your … More