Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,151,591 members, 7,812,929 topics. Date: Monday, 29 April 2024 at 10:48 PM

Reactjs Challenge - Fun Edition - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / Reactjs Challenge - Fun Edition (995 Views)

How Much Reactjs Do I Need To Know Before Applying For Jobs? / See What I Turned Nairaland To With Reactjs And PHP (pictures) / One On One Tutorial for JavaScripts, reactjs and nodejs- Lagos Only (2) (3) (4)

(1) (2) (Reply) (Go Down)

Reactjs Challenge - Fun Edition by Deicide: 5:02pm On Jul 24, 2023
grin Just building simple app using reactjs. something very minimal. I don't know if you guys like the idea?
- What should we start with?
- Design? you can freestyle any design, it doesn't have to look good but it should be functional.
Re: Reactjs Challenge - Fun Edition by niel63(m): 11:45pm On Jul 24, 2023
Deicide:
grin Just building simple app using reactjs. something very minimal. I don't know if you guys like the idea?
- What should we start with?
- Design? you can freestyle any design, it doesn't have to look good but it should be functional.

Component Driven Development

Try this.
https://multiload. vercel . app

Close the spaces in the url.

2 Likes

Re: Reactjs Challenge - Fun Edition by Deicide: 12:04am On Jul 25, 2023
niel63:


Component Driven Development

Try this.
https://multiload. vercel . app

Close the spaces in the url.
Wow nice. Are you saying i should rebuild this?
Re: Reactjs Challenge - Fun Edition by niel63(m): 7:31am On Jul 25, 2023
Paystack:


The app doesn't do anything.

Maybe I'm missing something


It's a simple upload component bro. You can make it work by wiring in your logic
Re: Reactjs Challenge - Fun Edition by niel63(m): 7:32am On Jul 25, 2023
Deicide:
Did you use a component library for the image upload?

Yeah... the drag and drop image upload uses a component library.
With that, you can control file type, file size limit, etc.
Re: Reactjs Challenge - Fun Edition by Paystack: 8:20am On Jul 25, 2023
niel63:


It's a simple upload component bro. You can make it work by wiring in your logic

Alright.
Re: Reactjs Challenge - Fun Edition by niel63(m): 12:21pm On Jul 25, 2023
Deicide:
So you won like real money?

It's freelancing. So, yeah you get paid.

You bid for projects you're comfortable with.

Some come in bigger rewards than others.
Re: Reactjs Challenge - Fun Edition by Deicide: 1:16pm On Jul 25, 2023
niel63:


It's freelancing. So, yeah you get paid.

You bid for projects you're comfortable with.

Some come in bigger rewards than others.

Yeah, I just checked it out and I just day see $ everywhere grin but most projects there are just Blockchain. Nawa o and I day here poverty wan kill me.
Re: Reactjs Challenge - Fun Edition by Paystack: 1:39pm On Jul 25, 2023
niel63:


It's freelancing. So, yeah you get paid.

You bid for projects you're comfortable with.

Some come in bigger rewards than others.


Wait... are those stuffs there real?

🤑🤑🤑🤑🤑
Re: Reactjs Challenge - Fun Edition by qtguru(m): 2:49pm On Jul 25, 2023
I see chrome extension gigs here, niel63 thanks for sharing. $$$ grin

1 Like

Re: Reactjs Challenge - Fun Edition by niel63(m): 4:56pm On Jul 25, 2023
qtguru:
I see chrome extension gigs here, niel63 thanks for sharing. $$$ grin

I remember mentioning this before in a thread you were active in.
Re: Reactjs Challenge - Fun Edition by qtguru(m): 5:05pm On Jul 25, 2023
niel63:


I remember mentioning this before in a thread you were active in.

Maybe I was depressed cuz If I saw money, I would have been here too if I get a gig there, I owe you a cut for the first one.
Re: Reactjs Challenge - Fun Edition by Deicide: 6:35pm On Jul 25, 2023
qtguru:


Maybe I was depressed cuz If I saw money, I would have been here too if I get a gig there, I owe you a cut for the first one.
What of me way create the thread? 😅😂

1 Like

Re: Reactjs Challenge - Fun Edition by qtguru(m): 7:24pm On Jul 25, 2023
Deicide:
What of me way create the thread? 😅😂

true true

1 Like

Re: Reactjs Challenge - Fun Edition by niel63(m): 8:09pm On Jul 25, 2023
qtguru:


Maybe I was depressed cuz If I saw money, I would have been here too if I get a gig there, I owe you a cut for the first one.

You will get good gigs bro. Especially on Chrome Extensions e plenty I swear. And one of the top guys I know there has more Chrome Extension Developed that I envy him. He took a $500 Extension development cost from me. E pain me... he had more bounties completed.

He's even Nigerian.
Re: Reactjs Challenge - Fun Edition by qtguru(m): 8:41pm On Jul 25, 2023
niel63:


You will get good gigs bro. Especially on Chrome Extensions e plenty I swear. And one of the top guys I know there has more Chrome Extension Developed that I envy him. He took a $500 Extension development cost from me. E pain me... he had more bounties completed.

He's even Nigerian.

If I can get some quick gigs I don't mind.
Re: Reactjs Challenge - Fun Edition by Nobody: 8:39am On Jul 26, 2023
qtguru:


true true
Me too as your Nairaland sidechick 😂😂😂😂
Re: Reactjs Challenge - Fun Edition by niel63(m): 2:05pm On Jul 26, 2023
IconicR:
Me too as your Nairaland sidechick 😂😂😂😂

Wahala 🤣😂

1 Like

Re: Reactjs Challenge - Fun Edition by Deicide: 2:41pm On Jul 26, 2023

1 Like

Re: Reactjs Challenge - Fun Edition by XXLDICK(m): 3:31pm On Jul 26, 2023
niel63:


Yeah... the drag and drop image upload uses a component library.
With that, you can control file type, file size limit, etc.

JS guys. Una too like library. This can be done easily na.
Re: Reactjs Challenge - Fun Edition by Paystack: 6:15pm On Jul 26, 2023
XXLDICK:


JS guys. Una too like library. This can be done easily na.

Easily with a library. sad
Re: Reactjs Challenge - Fun Edition by XXLDICK(m): 6:51pm On Jul 26, 2023
Paystack:


Easily with a library. sad

Just add an event listener - ondragover - and create the handling function. That simple.

Adding a library is an overhead that adds unnecessary kilobytes.

To accept only images and videos, just add accept="video/*, image/*" in the input tag.


I only use libraries when the tradeoff is worth it.
Re: Reactjs Challenge - Fun Edition by Paystack: 7:59pm On Jul 26, 2023
XXLDICK:


Just add an event listener - ondragover - and create the handling function. That simple.

Adding a library is an overhead that adds unnecessary kilobytes.

To accept only images and videos, just add accept="video/*, image/*" in the input tag.


I only use libraries when the tradeoff is worth it.

Fair enough
Re: Reactjs Challenge - Fun Edition by niel63(m): 9:49pm On Jul 26, 2023
XXLDICK:


JS guys. Una too like library. This can be done easily na.

Keep reinventing the wheel bro. Nothing do you.

But they are called library for a reason. Make we try no dey too do things wey go make our forefathers dey look us with one eye.

You wan troll abi? Oya enter bus make we trabaye!
Re: Reactjs Challenge - Fun Edition by qtguru(m): 3:11am On Jul 27, 2023
niel63:


Keep reinventing the wheel bro. Nothing do you.

But they are called library for a reason. Make we try no dey too do things wey go make our forefathers dey look us with one eye.

You wan troll abi? Oya enter bus make we trabaye!

I won't call it trolling. Npm dependencies add layers of bloat for something that can be done easily with FileReader
Re: Reactjs Challenge - Fun Edition by Nobody: 3:14am On Jul 27, 2023
qtguru:


I won't call it trolling. Npm dependencies add layers of bloat for something that can be done easily with FileReader
You don't sleep at night too? You work all day and night?

1 Like

Re: Reactjs Challenge - Fun Edition by jikins(m): 3:26am On Jul 27, 2023
niel63:


Keep reinventing the wheel bro. Nothing do you.

But they are called library for a reason. Make we try no dey too do things wey go make our forefathers dey look us with one eye.

You wan troll abi? Oya enter bus make we trabaye!

Everything nor be troll. He has a point. Not all libraries are well optimized. They add unnecessary code and packages you don't need. Its why I mostly try to go through a package especially if it's from someone new. to see if there's unnecessary stuffs there, if I find any I just jejely crtl C and V what I need if its not too complicated. Or find a more optimized alternative
Re: Reactjs Challenge - Fun Edition by qtguru(m): 3:57am On Jul 27, 2023
IconicR:
You don't sleep at night too? You work all day and night?

I sleep in the day, different timezone for work

1 Like 1 Share

(1) (2) (Reply)

Delphi Is Like Vb On Steroids / Brainteaser - How Many Mints Are There In This Grid / Automated Teller Machine (atm) Program

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 37
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.