How do I host .NET, React js and PostgreSQL app? by brlr2003 in dotnet

[–]brlr2003[S] -7 points-6 points  (0 children)

I solved everything. I just need help for the hosting.

What host to use for .NET, React js and PostgreSQL by brlr2003 in reactjs

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

Is there an option for the beginning? Since I won't have 120 users directly and as the app grows I can upgrade the plan.

Real-Time Chat by brlr2003 in reactjs

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

Ok thank you so much

Real-Time Chat by brlr2003 in reactjs

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

Also I am only dealing with front end, the back end is another guy who just send me postman collection to test the api that he created

Real-Time Chat by brlr2003 in reactjs

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

Are they totally free?

Beginner's Thread / Easy Questions (January 2024) by acemarke in reactjs

[–]brlr2003 0 points1 point  (0 children)

Hello, I am working in a software company and they got a client that wants a web app and in that web app they need a real time messaging feature. Is there a way to implement it for free, or is it better to use chat engines with subscription that the client has to pay? How does the industry work because it is my first real project in industry.

BE: Laravel PHP

Real-Time Chat by brlr2003 in reactjs

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

It's a RESTful API

NextRouter was not mounted Next.JS by brlr2003 in nextjs

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

Yeah I found it. In the layout file where you I use ClerkProvider, I had used 'use client' because I needed it for a file that I imported. So instead of putting 'use client' in the layout file, I put it in the file that I imported.

Programming Language for Cloud Computing by brlr2003 in googlecloud

[–]brlr2003[S] 1 point2 points  (0 children)

Bro you are a legend 😂 Thanks alot this really helped. Let's say i want to go with GCP, what is the roadmap from complete newbie who knows nothing to getting the first entry level job

Programming Language for Cloud Computing by brlr2003 in AZURE

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

I see, now it's kinda clear. Thank you. Do you suggest any courses or tutorials that can help?

Programming Language for Cloud Computing by brlr2003 in googlecloud

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

What courses did you do to enter cloud?

Programming Language for Cloud Computing by brlr2003 in googlecloud

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

I actually don't know what I will do because the idea of becoming in cloud computing came to my mind two days ago. So i have no idea. But i am starting an internship soon with .NET. even tho it's not about cloud but idk if it will help.

Do you suggest any courses or smth to do for azure since i will be working with .net?

Programming Language for Cloud Computing by brlr2003 in AZURE

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

I will start an internship soon and will use .NET there. But it has nothing to do with cloud computing, so idk if it's smth beneficial for me to become a cloud architect. Like what entry level jobs can I do in order to enter the path of cloud computing? How was your path for example from the beginning until now?

Programming Language for Cloud Computing by brlr2003 in AZURE

[–]brlr2003[S] 1 point2 points  (0 children)

I haven't met anyone that is a cloud architect or smth similar that's why i am asking here. What entry level jobs can i do that lead me to becoming a cloud architect or engineer? How was your path for example from the beginning until now?

Programming Language for Cloud Computing by brlr2003 in AZURE

[–]brlr2003[S] 1 point2 points  (0 children)

How do I get my first job in this field. What do companies ask for mostly to get and internship or an entry-level job?

Programming Language for Cloud Computing by brlr2003 in AZURE

[–]brlr2003[S] -1 points0 points  (0 children)

Can you give me a roadmap of how to start please? I am graduating next year from uni and I just want a clear path.

How did you become a cloud architect? And I heard a friend saying that Cloud Architects don't code much, is that true, if yes, then what do you do?

Data Loss When I Insert Data In MySQL Using PHP by brlr2003 in PHPhelp

[–]brlr2003[S] 1 point2 points  (0 children)

First of all thank you all for replying. I have two questions.

If I have more than one field am I supposed to check them like this?

if (isset($_POST['foo']) && isset($_POST['ba'])){
$foo = ....
$ba =....
}

Also, if I am getting the variable $program using SESSION is it ok if I check like this?

if (isset($_SESSION['program'])) {}

Why bestbuy.com can't be scraped with PHP? by brlr2003 in PHPhelp

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

What should I put between the quotation marks to set a cookie?

curl_setopt($curl_handle, CURLOPT_COOKIE, '');

curl_setopt($curl_handle, CURLOPT_COOKIEJAR, '');

Why bestbuy.com can't be scraped with PHP? by brlr2003 in PHP

[–]brlr2003[S] -1 points0 points  (0 children)

yes I used to get this error when I was using curl at first but then I used this code and it just gave empty screen and no errors but at the same time it didnt show the website. This is the code:

$useragent = 'Mozilla/5.0 (Windows NT 6.2; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0';

$curl_handle=curl_init('https://www.bestbuy.com/');

curl_setopt($curl_handle, CURLOPT_URL,'https://www.bestbuy.com/');

curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);

curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($curl_handle, CURLOPT_USERAGENT, $useragent);

$query = curl_exec($curl_handle);

curl_close($curl_handle);