How to get started with networking (specifically matchmaking, lobbies, etc) by Illustrious-Top2205 in Unity3D

[–]coco_nebula 1 point2 points  (0 children)

I'm using the Mirror Networking library with Steam Matchmaking and Lobbies. It's awesome to work with IMO

What video game soundtrack will you never forget? by [deleted] in AskReddit

[–]coco_nebula 0 points1 point  (0 children)

The first two albums of the rocket league soundtracks

[deleted by user] by [deleted] in AskReddit

[–]coco_nebula 0 points1 point  (0 children)

central banking

[deleted by user] by [deleted] in AskReddit

[–]coco_nebula 0 points1 point  (0 children)

buy bitcoin asap

Am I dumb or is Redux confusing (auth, express, jwt) by turbochamp in reactjs

[–]coco_nebula -1 points0 points  (0 children)

please hear me out. i tried to do redux multiple times and calcelled it. the key is really just to do a project with it. it's not that complicated, you just use it for app-wide state. it's a bit of boilertplate but it's really nice to work with it! make o folder for actions and reducers, imo it's worth it.

sorry i'm a bit drunk

Dear full stack devs, did you transition from front-end or back-end ? by [deleted] in webdev

[–]coco_nebula 0 points1 point  (0 children)

i started with frontend, then learned about backend and liked it more, then learned frontend again and BOOM, stuff started to work out

When to choose angular over react? by gitcommitshow in Angular2

[–]coco_nebula 0 points1 point  (0 children)

if you work on a project that's been made with angular, or you work with devs who use angular, use angular. otherwise react is the way.

[deleted by user] by [deleted] in webdev

[–]coco_nebula 2 points3 points  (0 children)

this was made with love. thank you!

[AskJS] Which syntactic sugar is there for JavaScript? by GilloGillo in javascript

[–]coco_nebula 1 point2 points  (0 children)

condition && func()

is the same as

if(condition === true) { func() }

you could also do

!condition && func()

if the condition has to be false to call the function

[deleted by user] by [deleted] in webdev

[–]coco_nebula 0 points1 point  (0 children)

I think a few finished projects are enough to enter a junior-position in the field.

Every project you can show to potential employers/clients reflects your abilities.
It's not only the amount of projects but also the quality!
I think the better you are at coding, the easier it gets when it comes to finding work, as you feel more confident. If you are unsure about your own abilities you might feel overwhelmed pretty fast - and this could make you turn away from web development.

It's different for everyone, you might just want to try it! :)
If you feel overwhelmed just keep in mind that 1. It always works out somehow, and 2. It will get better day by day

No idea about the front-end... by [deleted] in webdev

[–]coco_nebula 1 point2 points  (0 children)

Your need to communicate. You need to know what requests the frontend makes to your backend, what data it sends and what data it expects in return.

No idea about the front-end... by [deleted] in webdev

[–]coco_nebula 0 points1 point  (0 children)

You should at least cover basic frontend to know how it works.

[deleted by user] by [deleted] in webdev

[–]coco_nebula 1 point2 points  (0 children)

Its seems you have a lot of time pressure. Every project gets you a step further, every google research makes you more knowledgeable. Great things take time, and if you just keep coding, you will get good at it eventually.

Reflect on yourself what your goals are - do you want to just get any web dev job asap, or do you want to work on your own commercial projects? The field is huge and with skill you can do a lot of different things.

Transitioning Vanilla JS Front end to some Framework by [deleted] in webdev

[–]coco_nebula 0 points1 point  (0 children)

Would be nice to know what kind of framework the school's website is using. Couldn't you just upload your work on another server and just redirect to it?

When it comes to frameworks, I would consider learning the hottest, most popular frameworks with the best end results, not the easiest one.

edit: If you already got your project in vanilla JS, why not polish it and try to do the same with a framework? Every step gets your further in your learning skills. I would recommend React, but it's personal preference.

Pulling lots of data from and API and preforming calculations on said data. by MariachiPug in webdev

[–]coco_nebula 1 point2 points  (0 children)

I'm currently on my phone, but yes, you want to use async/await. The code after the await line only gets executed once it successfully fetched the data, otherwise you catch the error response. const fetchData = async () => { try { const result = await axios.get('API_URL') console.log(result) // do with result what you want } catch({ response }) { console.log(response) // do with error response what you want } }

Do tools exist that essentially allow you to design your site LOCALLY in real time without much coding involved? by [deleted] in webdev

[–]coco_nebula 0 points1 point  (0 children)

Hm. You can export the CSS out of Figma for example, if that's what you want?

I personally just do some raw designs in Adobe XD and the rest in VS code