Skip to content

Instantly share code, notes, and snippets.

View anjali1102's full-sized avatar
🏃‍♀️
Source Of Wisdom is Pain

Anjali Chauhan anjali1102

🏃‍♀️
Source Of Wisdom is Pain
View GitHub Profile
@patheticGeek
patheticGeek / webdresources.md
Last active March 10, 2024 20:09
Basically to send to anyone asking for what to do :)

Web dev guide

These are not just side projects but can also be used to get started or level up in web dev. Mostly for beginners to intermediate.

My rant

Learn to make something that's useful and secy rather than learn a language for the sake of learning a language.

Side project shouldn't always have to have the goal of being something big or perfect or going into your resume.

@praveenscience
praveenscience / Welcome.md
Last active October 14, 2021 10:09
Hacktoberfest with Praveen

Let’s make Hacktoberfest 2021 Great Again!

Hacktoberfest is the month-long event held in October, to celebrate open source software. For the past seven years DigitalOcean along with its partners (including DEV) has run the campaign to promote opensource.

Let’s get connected on LinkedIn or Discord or Twitter or YouTube and start talking. You’ll find all the links above on the top!

  • Why Hacktoberfest?
  • What am I supposed to do?
  • Hacktoberfest Repositories
@patheticGeek
patheticGeek / bookmarks.md
Last active January 18, 2025 07:48
Some useful things i have in my bookmarks
@hkedia321
hkedia321 / GSoC2018_FOSSASIA_Harshit_Kedia.md
Last active October 21, 2020 11:31
Google Summer of Code 2018 - Harshit Kedia - Contributions - FOSSASIA
@bigsergey
bigsergey / review-checklist.md
Last active March 6, 2025 18:38
Front-end Code Review Checklist

Review checklist

General

  1. Does the code work?
  2. Description of the project status is included.
  3. Code is easily understand.
  4. Code is written following the coding standarts/guidelines (React in our case).
  5. Code is in sync with existing code patterns/technologies.
  6. DRY. Is the same code duplicated more than twice?
@fongandrew
fongandrew / react-bind.md
Last active January 14, 2024 16:02
Explaining why we bind things in React

Start With This

Before getting to React, it's helpful to know what this does generally in Javascript. Take the following snippet of code. It's written in ES6 but the principles for this predate ES6.

class Dog {
  constructor() {