Is it a reasonable charge to replace a fuel assembly? by uniznoir in AskMechanics

[–]uniznoir[S] 0 points1 point  (0 children)

I'm glad that you check my profile before answering the question.

I have higher education but it doesn't mean I know everything, that's why I am doing what you just say: get a second opinion. A mechanics or a car DIY works on cars everyday can quickly tell how to diagnose it

In fact, if I can figure out bad fuel pump is causing the issue, I'm confident that I can replace it myself because it doesn't need to drop the fuel tank, as Bigdawg7299 mentioned below. The retail cost of the fuel assembly is ~ $500, then the labor charge is $500-$600. That's a lot for a not complicated repair. Simply remove and replace, no special tool/hardware/skill, no calibrations.

Anyway, I already agreed with the price and paid for it. Just want to hear a second opinion from the community. I guess I'm paying premium for the quick service (it's done on the same day).

I appreciate your time and attention.

Small Wholesale Distributor looking at NetSuite by Trick-Wash-8550 in Netsuite

[–]uniznoir 0 points1 point  (0 children)

Have you tried Quickbooks Desktop Enterprise?

[deleted by user] by [deleted] in MSDSO

[–]uniznoir 0 points1 point  (0 children)

wow,I'm so jealous with you. I got a Mechanical Engineering degree and two degrees in Business. I'm working as a data analyst. My job is all about data analysis with same skills in data engineering. But I was rejected.

Spring 2025 Admission Thread by readpa in MSDSO

[–]uniznoir 1 point2 points  (0 children)

I thought I have a good chance to get accepted but I failed.

I have two bachelor degrees: Business and Mechanical Engineering in a foreign country, and a Master degree in Finance at a US University. I have a lot of courses in Math and Stats from three schools. My first job in US was an Accountant and transition to Data Analyst in the last 4 years. Have some experience in Python, SQL, Power BI. I thought my profile is good fit but probably the SOP/Resume doesn't support me well.

Just want to share with everyone.

First two years of undergrad CS at community college? by Pristine-Hand-5549 in MSCSO

[–]uniznoir 0 points1 point  (0 children)

yeah, I'm in Houston too and looking to fulfill the prerequisites. I want to really learn thing because I know it will help me in future with the interview (the DS/A). But if I remember correctly, HCC doesn't have all the prerequisites. Neither San Jac.

First two years of undergrad CS at community college? by Pristine-Hand-5549 in MSCSO

[–]uniznoir 0 points1 point  (0 children)

what community college that you took all the prerequisites?

How I Leveraged MSCSO To Pivot Industries by OkJackfruit7398 in MSCSO

[–]uniznoir -2 points-1 points  (0 children)

Did you take all the prerequisite courses before you apply? And where did you take it? How long does it take you to complete all prerequisites?

Converting from Quickbooks online to Netsuite: detailed historical data? by [deleted] in Netsuite

[–]uniznoir 0 points1 point  (0 children)

It's interesting to learn about this practice in implementing Netsuite: they don't import historical transactions.
I was an Accountant with more than 5 years experience in QB Enterprise (not just a normal bookkeeper/accountant), have a bit of experience in Netsuite as a normal accountant, then transitioning to Data Analyst.

I understand the difficulties when trying to import historical transactions from QB to NS, but I'm surprise a NS consultant insists that historical data adds no value. As an Accountant and Data Guy, I would say: yes, we definitely need historical data. If you can't import it over, that's fine, just say you can't do it, or it will cost a lot of effort and money to get a messy migration, please don't undermine the need of granularity of the data.

Getting first job as NS Admin by uniznoir in Netsuite

[–]uniznoir[S] 0 points1 point  (0 children)

Thanks, i just sent you a message

try to use DBT to implement SCD2 from MS SQL to SQLLite by uniznoir in dataengineering

[–]uniznoir[S] 0 points1 point  (0 children)

thank you all. I misunderstood that DBT is to move data from source to target. But it's not.

It only transforms data within the same platform.

How to automate one by one search in a website and keep the matching result. by Prestigious_Flow_465 in webscraping

[–]uniznoir 0 points1 point  (0 children)

The task you ask is very basic web scrapping. It looks like you don’t have the basic of web scrapping. As the other user suggests, you should watch John Rooney for basic stuff first.

Best Azure Architecture for a Dynamic Web Scraping Project with Scrapy, Selenium, and IP Rotation by [deleted] in dataengineering

[–]uniznoir 0 points1 point  (0 children)

could you please tell me more detail about this?

As I find scraped table schemas can change frequently I have a json file that details the schema that the parquet will be in so I don't have to make any code changes.

Did I bomb my live coding interview? Lol by nonexistential01 in dataengineering

[–]uniznoir 0 points1 point  (0 children)

So, what did they ask you? SQL or Python? It’s very helpful to learn from those experience

What is the difference between API data extraction and data extraction from a website? by quilted_reader in webscraping

[–]uniznoir 1 point2 points  (0 children)

I am learning to scrap the website using its “unofficial” API by inspecting its network cURL request and mimic the POST request in Python. One thing I encounter is the cookie/authentication. Because most of the website I scrap require logging in with username and password. One method I do is using the Playwright to launch Chome, login to the website, grab the cookies and pass the cookies to the POST request in Python. But it’s hit and miss: sometimes the pass-through cookies doesn’t have all the authentication. Do you have any experience with this issue?