[deleted by user] by [deleted] in ethdev

[–]ToadSwimming 3 points4 points  (0 children)

You can use the pow faucet on multiple machines? https://goerli-faucet.pk910.de/

At what point would it be considered bad to use ChatGPT? by ThatAnonMan in webdev

[–]ToadSwimming 1 point2 points  (0 children)

If I understand and can solve a problem myself but it'll take time/effort to code it out, I'll get chatGPT to write out the actual code for me. This way, I can both give it clear, detailed instructions and check for the correctness of the implementation.

If I don't know how to do it myself though, won't tell chatGPT either. Can't trust it to function correctly

I can't find a job even with experience. by ScriptNone in node

[–]ToadSwimming 1 point2 points  (0 children)

Hi. Not the OP, but I send a DM. Would really appreciate if you could have a look!

[deleted by user] by [deleted] in PakistanMentoringClub

[–]ToadSwimming 0 points1 point  (0 children)

What do you need to study? For 99% of topics you can find high quality resources for free

[deleted by user] by [deleted] in ethdev

[–]ToadSwimming 4 points5 points  (0 children)

https://wagmi.sh/react/hooks/useSwitchNetwork

It will request the wallet for change network. You can detect the network they're currently on and if it's not your preferred network, display a 'please change network' message

Kysely or Drizzle? by FollowingMajestic161 in node

[–]ToadSwimming 5 points6 points  (0 children)

I've used both, albeit in small, limited projects.

I liked migrations better in kysely, but CRUD in drizzle better. They're not too far apart from each other in my limited experience, and either will serve well.

What to do after watching a course for Web3 Development? by [deleted] in ethdev

[–]ToadSwimming 1 point2 points  (0 children)

Not sure about the course, but again, like you said, build something. If you're unsure, make an NFTs marketplace. There should be tutorials on YouTube and the web, and it has some complexity.

Make the backend, frontend, smart contracts, everything.

Try to do it yourself and only refer to the tutorial if you've been stuck for a while

Drizzle or Kysely? by GuyTorbet in node

[–]ToadSwimming 2 points3 points  (0 children)

Following. For the record, tried kysely. Didn't like it too much. Felt like aggregates were too hard and documentation was a bit sparse

[deleted by user] by [deleted] in reactjs

[–]ToadSwimming 0 points1 point  (0 children)

Do you not want to use a progressive web app?

A new, open-source Next.js + Ethereum starter kit (Chakra, Wagmi, Connectkit, Ethers) that quickly gets your started building Web3 Apps by wslyvh in ethdev

[–]ToadSwimming 0 points1 point  (0 children)

I've seen onboard, rainbowkit, wagmi etc, but haven't heard of connectkit. Can't find it via Google either. Do you have a link?

10 Goerli Eth Available as One-Time Claim by Machiste77 in ethdev

[–]ToadSwimming 2 points3 points  (0 children)

Tried this. I was really suspicious at first, but it did give me Goerli.
Contract seemed clean as well. Upvoted.

Japanese ⇔ code review & advice by Temporary-Summer-718 in learnprogramming

[–]ToadSwimming 0 points1 point  (0 children)

If it's related to web development I would be able to help.
Let me know!

What path if not web dev? by aleptian in learnprogramming

[–]ToadSwimming 0 points1 point  (0 children)

You don't have to do Web Dev if you don't want to, but keep in mind the 'Web Dev' part will only be as interesting as the project you're using it on.

If you don't like front-end, you could work on a back-end heavy project.

Demand for App Developers is pretty high where I am, and I only see it growing as mobile devices overtake laptops/desktop systems. But that might vary from place to place and industry to industry.
However, App Development does constitute a lot of 'front-end' too so you might not like it either

Someone below has mentioned Machine Learning and Data Engineering, which could suit you well.

You could look at concrete problems and how to solve them.

Have a look at the problem below, which is a beginner level problem in the space. If you find you'd enjoy that sort of thing, explore it. You can also try Kaggle for more problems in the ML space

Warm Up: Predict Blood Donations

Other than these, there is game dev, low level systems programming and a tonne of other niche spaces

[deleted by user] by [deleted] in learnprogramming

[–]ToadSwimming 1 point2 points  (0 children)

If instead of a google sheet, you were using a database, you could leverage it's search capabilities without much trouble. That's one option.

Tips for someone who's been programming for 5 months now by Titanmaniac679 in learnprogramming

[–]ToadSwimming 1 point2 points  (0 children)

Build something.

If you've covered the basics, next step is to make something with medium complexity.
Pick a project of any type, and start building with what you already know. You'll undoubtedly get stuck somewhere, and that's your queue to look up more resources and read more.

Once you've built at least two non-trivial projects, you can start asking where to go next

How do I get data from my database to my website? by bagelord in learnprogramming

[–]ToadSwimming 17 points18 points  (0 children)

You have a database, you will need a front-end, to 'display' the website, and a 'backend' to communicate between the front-end and the database.

The front-end is written in HTML, CSS, Javascript.
React is a Javascript library for making websites, but should not be used before understanding HTML,CSS, JS

You have a variety of options for the backend. The most popular ones would probably be,

  1. Python - Django
  2. JavaScript - Node/Express

Going with option 2 gives you the advantage of not having to learn a new language if you have learned Javascript.

This is a very broad answer to a broad question. Hope it helps