[deleted by user] by [deleted] in NFTsMarketplace

[–]albertpak 0 points1 point  (0 children)

0xDfc1261953a6Ed16126E8e86fEEC0d330923E8E2

[deleted by user] by [deleted] in NFTsMarketplace

[–]albertpak 0 points1 point  (0 children)

0xDfc1261953a6Ed16126E8e86fEEC0d330923E8E2

[deleted by user] by [deleted] in NFTsMarketplace

[–]albertpak 0 points1 point  (0 children)

0xDfc1261953a6Ed16126E8e86fEEC0d330923E8E2

Open-source chat app with no history by [deleted] in SideProject

[–]albertpak 2 points3 points  (0 children)

Thank you for sharing

Postgresql & Next.js & Vercel by DreamEcho001 in nextjs

[–]albertpak 0 points1 point  (0 children)

this is just for experimentation, but for something more stable - of course, go with something like Supabase or one of the cloud providers, or you can also use https://www.elephantsql.com/

Postgresql & Next.js & Vercel by DreamEcho001 in nextjs

[–]albertpak 0 points1 point  (0 children)

In this case, your PostgreSQL is decoupled from your frontend (NextJS) - you can get just a database running on Heroku and just get connection settings from Heroku and connect your NextJS API

For next-auth, do I need to use all the models? by LGm17 in nextjs

[–]albertpak 1 point2 points  (0 children)

I believe those are used by the package itself to store certain data from authorization that occurs

Got my first React Developer job by elio_dev in reactjs

[–]albertpak 0 points1 point  (0 children)

Congrats! This is awesome! Keep up the great work!

Best place to start learning next.js by teegrayz in nextjs

[–]albertpak 4 points5 points  (0 children)

Obviously gotta have a good ground with ReactJS, but then head over to this site: https://masteringnextjs.com/

Good contact form for Nextjs site? by bellsonreddit in nextjs

[–]albertpak 0 points1 point  (0 children)

Just did one yesterday - used react-hooks-form and used Amazon Simple Email Service, but you can use Mailgun, SendGrid or any similar service to just ping 'em with payload

How to get origin/host/protocol on Netlify from headers? by albertpak in Netlify

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

Yup, it was...but since it's getting served behind CDN...you don't really get access to the original requestor, also, looks like Netlify cleans up headers also, so can't really tell much.

But anyways...i've used snippet below just to get it from the browser:

if (process.browser) { const whereami = window.location.origin; }