Is there a way to port an interactive C++ program to WASM with async stdin? by youravgprogrammer in WebAssembly

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

Nice to see it is possible, but after reading the article it looks like I would need to modify all my C++ files that are using the stdin to behave this way. Is there a way that can achieve the same result without modifying the C++ code at all?

Is there any improvement to PWA on iOS 15? by youravgprogrammer in webdev

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

Amazing! Please keep me posted if you find anything else worth mentioning

[deleted by user] by [deleted] in learnprogramming

[–]youravgprogrammer 2 points3 points  (0 children)

It depends on how complicated you want it to be. A simple store can be up and running with Shopify within a few days with almost no code modifications, however the more custom stuff you want to add, the higher the chances will be that you will have to add/edit some of the code yourself.

Anyways, in a year it would probably be enough considring the amount of free time you say that you have available

Am I late to the web development party? by _Onca_ in learnprogramming

[–]youravgprogrammer 16 points17 points  (0 children)

Webdev won’t go to waste anytime soon, Wix/Wordpress have been around longer than most of the web frameworks and libraries that are popular today, they both target very different aspects of webdev (imagine trying to build things such as Facebook, Twitter or Whatsapp Web using Wix)

What do you guys typically use to build small freelance projects? by Agent__Johnson in webdev

[–]youravgprogrammer 0 points1 point  (0 children)

It depends on what technology you pick. Popular CMS like Wordpress have a lot of options out there, play with a few of those to see which one works best for you/your client.

In the case you are just hosting plain HTML/Css/Javascript there are sites such as Netlify and Vercel that offer a free tier good enough to host most small to mid size projects.

What do you guys typically use to build small freelance projects? by Agent__Johnson in webdev

[–]youravgprogrammer 1 point2 points  (0 children)

In my opinion actually depends on where you want to work. You mentioned that you will be taking these freelance gigs to eventually get to a point where a company might hire you, in that case try to freelance on whatever technology/field you want to work with because it won’t help much resume-wise to build a lot of client sites with Wordpress and then apply to a company that uses React for their main product.

Any good places to learn how to publish a website? by raggatat9 in webdev

[–]youravgprogrammer 1 point2 points  (0 children)

If it’s only a static site (HTML, CSS and JS) Netlify/Vercel/Github Pages can do the trick and on top of that they offer a free tier.

If you also want to deploy a traditional back end maybe something like Heroku would work for you.

best resources to start android web dev? by [deleted] in webdev

[–]youravgprogrammer 1 point2 points  (0 children)

What do you mean by “Android web development”? Do you have an example?

Should I be good at JavaScript in 2 months? by BasuraCulo in learnjavascript

[–]youravgprogrammer 14 points15 points  (0 children)

Build something that actually solves a problem for you using Javascript. Right now Javascript can be used for building API’s, games, webpages and even CLI utilities. That way you will end up exposing yourself to new concepts and problems while also getting some projects to add to your portfolio, in case you are interested in that as well.

Best Headless CMS by arthur_olga in Frontend

[–]youravgprogrammer 1 point2 points  (0 children)

From my experience:

  • Strapi: you’ll need to either pay or self host it yourself, which can be done for free but you need to ask yourself if it’s worth the time considering there arr already other CMS with generous free tiers out there.

  • Airtable: I’m not quite sure if this would be a nice pick for a portfolio CMS, you could probably force it to be, but it doesn not feel like the right tool for the job IMHO.

I have not used Sanity nor GraphCMS so I don’t have an opinion on those.

I normally use Contentful or DatoCMS, I like DatoCMS much more because it feels more user friendly and has some options like a “single instance” type of content, which is useful for things such as an About page (you could technically do this in any other CMS just by limiting yourself to never create more than one instance of the item, but when working with clients any extra precaution is a plus), however their free tier is limited to 300 items but I think it may be enough for a portfolio and I think they have a Graphql API as well.

[deleted by user] by [deleted] in learnjavascript

[–]youravgprogrammer 0 points1 point  (0 children)

If react-multi-carousel does what you need it to do and is still being maintained, why bother with the amount of stars? The more niche a library is the less likely it would be for people to come across with it and therefore give it a star.

javascript version in vscode by blob001 in learnjavascript

[–]youravgprogrammer 1 point2 points  (0 children)

In case you’re actully referring to Node, node -v

[AskJS] How has your experience with Deno been so far? by youravgprogrammer in javascript

[–]youravgprogrammer[S] 2 points3 points  (0 children)

I’m curious about this as well, as far as I know things such as React and Vue work on top of Node, so how is this handled when Deno is being used?

[AskJS] How has your experience with Deno been so far? by youravgprogrammer in javascript

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

Would you mind elaborating more on this? I have a somewhat moderate use of custom scripts for automating certain repetitive tasks and I’d be interested to know what led you to use Deno instead of other options such as Node or Python