It is a tool really nice to learn languages by listen music and by have a funny moments. It works … More
Tag: tips
Good website to learn by memorize
This website is really good to learn things by memorize. I think it is excellent to learn languages, but you … More
Nice website to starting to learn languages
https://www.codecademy.com/ If you want to learn the basic of something, you can check if have some course available in this … More
Regex : How to remove spaces from the left of a string with Regex
Use : replace(/\s+$/,””); Example : var test = ” xxxxx – yyyyyyy”; var firstResult = test.split(“-“)[0].trim(); // ” xxxxx” var … More
Meteor Js : Debug meteor js applications using IntelliJ IDEA
If you program using the Intellij IDEA you can debug your Meteor Js applications in a easy way. To do … More
Hibernate : How to resolve “org.hibernate.PersistentObjectException: detached entity passed to persist” error ?
This error may occur in two situations, look below: Do you have an object and one of his attributes has … More
Meteor JS : How to connect to remote/multiple databases ?
Example : var mydatabase = new MongoInternals.RemoteCollectionDriver(“”); MyCollection = new Mongo.Collection(“collection_name”, { _driver: mydatabase }); : Link for your mongo … More
Tips : Bootswatch – Free themes for Bootstrap
Customize yours responsive layouts made with Bootstrap. See how easy it is to use and how many different layouts exist. … More
Tips : Develop responsive applications with Bootstrap
Bootstrap is a very nice framework developed with the concept of “Mobile First”. Through it you can easily develop layouts … More