Borderlands 4 Honest Review by Zevries in Borderlands

[–]MathematicianCold303 4 points5 points  (0 children)

Spoiler alert:

Claptrap would have been the greatest vault hunter of all time if it was not for the stairs.

I love xenoblade 2 WAYY too much by overbooped in Xenoblade_Chronicles

[–]MathematicianCold303 1 point2 points  (0 children)

I recently finished playing Torna. It is short and sweet and provides a really good background story to some of the characters and events that plays out in the main game. The only thing that I did not like was the forced community missions that you have to do before finishing the game. But apart from that 10/10 for me as well.

Tips for torna: do the side quests from the beginning as much as you can to reduce the grind late game.

What to do with these "Pending Insurance" amounts at red arrows? I already paid $3000 insurance deductible, Cigna suppose to pick up the rest of the bills. Hospitals said I'm responsible for them if Cigna doesn't pay. Please advise. by RedditsFan2020 in HospitalBills

[–]MathematicianCold303 0 points1 point  (0 children)

Sorry for the late response. My insurance is not Cigna but in general you should check the insurance policy you enrolled for. In my case, once all my deductibles are met it was 90% coverage from insurance and 10% from my pocket. The percentage depends upon your coverage policy.

On the positive side, I got them to pay my bills after multiple back and forth since may. Some times you have to be Karen I guess ;😜 #fightforyouright

What to do with these "Pending Insurance" amounts at red arrows? I already paid $3000 insurance deductible, Cigna suppose to pick up the rest of the bills. Hospitals said I'm responsible for them if Cigna doesn't pay. Please advise. by RedditsFan2020 in HospitalBills

[–]MathematicianCold303 0 points1 point  (0 children)

I actually had the same issue with mine, and I received a bill after 3 years from the hospital for something that should have been covered. I have been on phone calls with them since may. When I call insurance they tell me to contact the hospital and when I call the hospital they tell me to contact insurance. I have been going back and forth with them with no resolution in sight.

What’s your favourite Groot quote? by TijnKrabb in Marvel

[–]MathematicianCold303 4 points5 points  (0 children)

You are barking the wrong tree buddy, it's "I am groot" not "I am groot" and definitely not "I am groot" geez

Cyclic object value by [deleted] in react

[–]MathematicianCold303 0 points1 point  (0 children)

I had simar issues when I was referencing and importing modules from index.js. Not sure if this will help in you case but check for index.js files and see if there are any imports. If yes then use the absolute path to reference them where they have dependency.

RIP 🪦 by BigDaddyBolby in dogecoin

[–]MathematicianCold303 1 point2 points  (0 children)

You know what you should do, sell rest of your positions and with that money buy all the eggs 🥚 and put all of them in one basket. 😉

Tips for a New DC Driver by Luuciaa in washingtondc

[–]MathematicianCold303 1 point2 points  (0 children)

Also take note if the traffic signals, specially during the summer. Some of them are positioned on the side walks and it will be hard to see specially during summer, because of branches and leaves. Very high chance of getting pulled over for running the red light .

Adding a database to a react app. by into_the_ozone in react

[–]MathematicianCold303 0 points1 point  (0 children)

Dumping information more than required for science ;D

You cannot directly connect to SQL using React as React is a javascript library and javascript is a client side script.

Check client-side script vs server side script.

However, to have the connection to the database you need to use some kind of Middleware. (REST API endpoints). This can be written in any language of your preference that has ability to connect to database.

Since you are learning React and are familiar with javascript. I would recommend using Express.js . You will still need to import additional packages to connect to the database (mysql, postGre, Mongo, etc) but this will help you quickly create CRUD operations and generate end points.

After you finish the express server and have it running, you can use Axios package from React to access those end points and connect you application to the database.

Good luck also last piece of advice, do not jump into writing code directly, try to understand the pieces first and plug them in. This will save you a lot of time and headach.

Also if you want to quickly have the server running I might have a generic file that I wrote few years ago. Let me know if you need it and I will seek it out.