We hear people say it all the time, but I would like to reiterate it. Any contribution you make to open source is a valuable contribution. Sure we ...
For further actions, you may consider blocking this person and/or reporting abuse
Great post. I'm sure you saved multiple people from falling to the same trouble you went through. I totally agree with this that any contribution to an open source project is a valuable one. I started my own open source project recently and I got a pull request the first day to fix the copyright year in the footer of my site. It was a simple, but very helpful fix. I really appreciated that someone took the time to fix it. I would be willing to be that these kind of issues are seen by lots of people and they think that someone else will fix it since it is so easy to do.
That's great you started Dancing Vikings, dancing-vikings.github.io. Best of luck with the projects!
Thank you!
Whoa. I haven't looked into Gatsby yet since I'm not running a site any more, so I didn't realize it's that "cool". Kinda reminds me of:
To each their own. I appreciate the feedback, but that wasn't the point of the post 😉
Does your backup tool allow you to exclude node_modules from backups?
I wish there was a way to have .backupignore files.
Hi Nick, can you enlighten me on the benefits of using Typescript on React? If it's about type, don't we have propTypes for that? Thanks
Proptypes are fine if you're just validating the shape of props that JSX consumes, but proptypes won't be able to check the types of the rest of your codebase. That's where TypeScript, Flow or a language like Reason come into play.
Also, with TypeScript, the refactor story is much better, there's intellisense etc.
In fact, if you use VS Code or even Code Sandbox for your JavaScript based projects, all the refactoring capabilities under the hood are thanks to the TypeScript language service, since JavaScript is valid TypeScript.
Oh I see.. been considering TypeScript for a long time, but haven't learned it because I don't know what tangible benefit it offers. I think I will look into your source code for better understanding. I'm looking forward to your TS post 😁
In the meantime, check out this post. There's some great TypeScript resources in there.
Consider Using TypeScript
Nick Taylor
I also wrote this article for newer devs getting into open source. Contributing to documentation is always appreciated and it's a great way to start contributing. If you're looking for some help in getting started in open source, look no further than @jess ' post.
Open Source Resources for Beginners
Jess Lee
Thanks, I needed to read this today!
That is a very good story.
My first Open source contribution was on the OWASP Top 10 and I had a lot of fun addind things to that project and contributing to the community.