Rathan Aleti

Favorite Band: Imagine Dragons

I like Imagine Dragons because their music is motivating and relatable.


How to Make Masala Maggi

  1. Boil water
    1. Pour water into pan
    2. Heat until boiling
  2. Add noodles and tastemaker
  3. Cook for 2 minutes

Other Bands I Like

My Favorite Location

The places I have want to visit


Places I Want to Visit

Place Reason Distance Budget ($)
Paris Culture 4100 miles 2500
Hyderabad Home & Food 8516 miles 4000
Tokyo Technology and food 6300 miles 3000
Rome History 5000 miles 2200

Code Snippet

This Node.js snippet demonstrates how to create a new file using the built-in file system module.

const fileSystem = require('fs');

const createFile = fileName => {
    fileSystem.open(fileName, 'w', error => {
        if (error) throw error;
        console.log('Saved!');
    });
};

Source: code.pieces Node.js Snippets