CONNECTING MONGODB TO YOUR APP USING NODE.JS

MongoDB is an open source NoSQL database management program. NoSQL databases are quite useful for working with large sets of distributed data.

THE ULTIMATE LIST OF CSS CODE GENERATORS FOR WEB DEVELOPMENT

If you’ve been using CSS and creating websites for some time, there’s a strong probability that you’ve had the following thought: How do I do that again?

SEE WHAT’S NEW WITH MONGODB 6.0

MongoDB 6.0.0 was just released yesterday and is now available for download!

GET PAID TO WRITE TECHNICAL ARTICLES

The internet is a place with endless possibilities to make money.

HOW WAITING TABLES SET ME UP FOR SUCCESS

I believe everyone should spend some time working in the service industry at some point in their lives.

BALANCING A FULL-TIME JOB WHILE LEARNING TO CODE

If you really want something, you’ll find a way. If you don’t you’ll find an excuse.

FILTER OUT THE GEESE (CODEWARS — 8KYU)

Here’s a link to the Codewars Kata: codewars.com/kata/57ee4a67108d3fd9eb0000e7/.. The goal of this exercise is to get back an array without some specific elements in it (elements that are specified in the geese array).

WANT TO BE A PROGRAMMER? STOP OVERTHINKING IT.

Which path to take? A path. A programmer is someone who programs.

6 WAYS TO MAKE SURE YOU’RE USING THE RIGHT ARRAY METHOD

Understanding arrays is an important part of coding with JavaScript but array methods are what make JavaScript arrays so powerful.

CONVERTING STRINGS INTO CAMELCASED STRINGS

While doing my homework, I encountered an exciting exercise. The goal was to write a function that changes words like “add four subtract six” into camel-cased “addFourSubtractSix”.