Skip to content

Instantly share code, notes, and snippets.

View bidyashish's full-sized avatar
🔺

Bidyashish bidyashish

🔺
  • Ẹ̶̢̢̛̫͚̤͙̏̔͗̌̒̀̃̕ạ̸̠̦̞̝͇̗̗̻͉̲͓̋͗̔̑͋̌̑̏̎̐̂̌̎̽̂̾̓̎̃̕̕͠r̶̢͔̜̜̣̮̮̫̜̭̞͙͇͖͎̾͒̾̏͜t̸̢͙͔̪̬̺̼̺̮͐͆h̵̨̛̳̬̯̥̮̖̝͖͕̟͎͈͌̐̿͐̊͌͌̇͒̃̐̓̋̊́̀́̕͘͝
View GitHub Profile

Next.js Starters

A list of CLI generators, starter kits / boilerplates and toolkits to kick start your Next.js apps.

  • What is included in this list:
    • Has ~1K+ Github stars
    • Actively maintained / up to date
    • Includes a style / css solution or UI Framework
    • Includes a database
  • Includes authentication / authorization

What Hiring Should Look Like

This is definitely not the first time I've written about this topic, but I haven't written formally about it in quite awhile. So I want to revisit why I think technical-position interviewing is so poorly designed, and lay out what I think would be a better process.

I'm just one guy, with a bunch of strong opinions and a bunch of flaws. So take these suggestions with a grain of salt. I'm sure there's a lot of talented, passionate folks with other thoughts, and some are probably a lot more interesting and useful than my own.

But at the same time, I hope you'll set aside the assumptions and status quo of how interviewing is always done. Just because you were hired a certain way, and even if you liked it, doesn't mean that it's a good interview process to repeat.

If you're happy with the way technical interviewing currently works at your company, fine. Just stop, don't read any further. I'm not going to spend any effort trying to convince you otherwise.

@dgcoffman
dgcoffman / cloudSettings
Last active October 11, 2019 19:43
Visual Studio Code Sync Settings Gist
{"lastUpload":"2019-10-11T19:43:48.295Z","extensionVersion":"v3.4.3"}
@Bhavdip
Bhavdip / sketch-never-ending.md
Created October 6, 2016 15:53
Modify Sketch to never ending trial

###Sketch trial non stop

Open hosts files:

$ open /private/etc/hosts

Edit the file adding:

127.0.0.1 backend.bohemiancoding.com

127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com

@lopspower
lopspower / README.md
Last active November 1, 2025 12:14
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

All hex value from 100% to 0% alpha:

@vladimirtsyupko
vladimirtsyupko / gist:10964772
Created April 17, 2014 08:32
Git force pull to overwrite local files
git fetch --all
git reset --hard origin/master
git pull origin master