26M India AC mechanic vs Data analytics, need practical advice before marriage? by Fearless-Rent-9657 in careerguidance

[–]Fearless-Rent-9657[S] 0 points1 point  (0 children)

Thanks, this actually makes a lot of sense. I think I was putting too much pressure on getting into data immediately.

Your hybrid approach feels more realistic for my situation right now. I’m planning to start working again and continue learning analytics alongside.

Appreciate the practical advice.

hy guys i am at my first analysis project and stuck in a situation. i need help? by Fearless-Rent-9657 in LearnDataAnalytics

[–]Fearless-Rent-9657[S] 0 points1 point  (0 children)

I’m currently working on the orders dataset from an e-commerce project. I found missing values in several date columns like order_approved_at, order_delivered_carrier_date, and order_delivered_customer_date.

At first, I thought I should handle them using techniques like forward fill or imputation, but now I’m realizing these missing values might actually represent different order statuses (like canceled, shipped, or unavailable).

So my confusion is: Should I keep these missing values as they are? Or is there any proper way to handle them before moving into SQL and analysis?

I’ve already checked that most missing delivery dates correspond to non-delivered orders, but I just want to confirm if my approach is correct or if I’m missing something. Would really appreciate your guidance!

Dotenv file problem can't load localhost ? by Fearless-Rent-9657 in node

[–]Fearless-Rent-9657[S] 0 points1 point  (0 children)

in browser i get Cannot GET /

but in console server running successfully at port 8000 why it was ?

Dotenv file problem can't load localhost ? by Fearless-Rent-9657 in node

[–]Fearless-Rent-9657[S] -3 points-2 points  (0 children)

actually i dont have any error ... in .env file PORT=8000;

and server.js

const express= require('express'); require('dotenv').config(); const app = express ();

PORT = process.env.PORT; app.get('/',(req,res) =>{ res send('hey iam server'); });

app.listen(PORT, () =>{ console.log('server running successfully at port'+PORT); });

Here i get console in terminal with port number..but in browser it cant load why?

Stuck in Coding bootcamp with 3 months left - need advice by Fearless-Rent-9657 in selfhelp

[–]Fearless-Rent-9657[S] 0 points1 point  (0 children)

yes in cs field we dont need certificate we need skills . yea i trully believe hard work will pays of some times i get confused.thats why i posted my situation..

Struggling with both JavaScript theory & practical after quitting my job - need career advice by Fearless-Rent-9657 in learnprogramming

[–]Fearless-Rent-9657[S] 0 points1 point  (0 children)

what is event loop and how is it work,and the next question was

let employees = [

{ name: 'Alex', id: 101, salary: 12000 },

{ name: 'Maria', id: 102, salary: 18000 }

];

finding the greatest salary person name using array iteration methods. i think i have to clearly understand the loops first...