First steps after MongoDB install

After you’ve completed the mongo database installation then you can start using it. First, create a database after you log in to database terminal using command: That’s it, now you can use it an do whatever you what with your database because you are in full control. https://docs.mongodb.com/manual…

Read More

Get rid of long paths

Get rid of long paths If you are using paths and the project it’s getting bigger you might want to consider using absolute paths: create a .env file under the root directory of your node app: This way you’ll not have to worry again about ugly paths and you can move files within src folder freerly.

Read More

Final vs effectively final in java 8

Final and effectively final in java 8 The main difference between this two keywords is that when you use final, you explicitly write it before the name of the variable and you can’t change the value overtime. Wereas with effectively final, you declare as a normal variable and if you don’t change…

Read More

Async/await in javascript

Async/await in javascript First added in ES2017 and maybe in the near future they will become the most used keywords for handling promises. What is async and await? Let’s start with async and then move on with await. Async It’s placed before any function definition that returns a promise, if there…

Read More

React Native Romania Traffic Fine

Traffic Fine Romania Find out the latest changes regarding traffic fines Traffic Fine is a new application that offers the user the possibility to search and check details related to a traffic fine. When you received a traffic fine, you sat and wondered if you were properly sanctioned, but now you…

Read More
Page 9 Of 12