Skip to content

Instantly share code, notes, and snippets.

@pk-pranshu
pk-pranshu / media-query.css
Created July 10, 2018 21:32 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS

Keybase proof

I hereby claim:

  • I am pranshu1992 on github.
  • I am pranshu (https://keybase.io/pranshu) on keybase.
  • I have a public key ASAE6gMSx-XdttBxrc_3Yna-cSDY4YOGsD-tX6Ee2dq04Qo

To claim this, I am signing this object:

@pk-pranshu
pk-pranshu / ultimate-ut-cheat-sheet.md
Created July 17, 2017 20:51 — forked from yoavniran/ultimate-ut-cheat-sheet.md
The Ultimate Unit Testing Cheat-sheet For Mocha, Chai and Sinon

The Ultimate Unit Testing Cheat-sheet

For Mocha, Chai and Sinon

using mocha/chai/sinon for node.js unit-tests? check out my utility: mocha-stirrer to easily reuse test components and mock require dependencies


@pk-pranshu
pk-pranshu / .bash_profile
Created October 13, 2016 22:17 — forked from natelandau/.bash_profile
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@pk-pranshu
pk-pranshu / frontendDevlopmentBookmarks.md
Created July 21, 2016 08:44 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
@pk-pranshu
pk-pranshu / The Technical Interview Cheat Sheet.md
Created June 26, 2016 01:09 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

Studying for a Tech Interview Sucks, so Here's a Cheat Sheet to Help

This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.

Data Structure Basics

###Array ####Definition:

  • Stores data elements based on an sequential, most commonly 0 based, index.
  • Based on tuples from set theory.