Skip to content

Instantly share code, notes, and snippets.

View raakesh's full-sized avatar
🎯
Focusing

Rakesh Reddy raakesh

🎯
Focusing
  • India
  • 07:59 (UTC +05:30)
View GitHub Profile
@raakesh
raakesh / The Technical Interview Cheat Sheet.md
Last active August 29, 2015 14:28 — 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.
@raakesh
raakesh / Skeleton Grid
Created October 6, 2015 09:45 — forked from dhg/Skeleton Grid
This is the Skeleton.gs grid example
<!-- The container is a centered 960px -->
<div class="container">
<!-- Give column value in word form (one, two..., twelve) -->
<div class="sixteen columns">
<h1>Full Width Column</h1>
</div>
<!-- Sweet nested columns cleared with a clearfix class -->
<div class="six columns clearfix">
@raakesh
raakesh / classes.md
Created May 19, 2016 15:31 — forked from reinink/classes.md
How do you typically organize your classes?

By type

  • /Controllers
  • /Events
  • /Models

By topic

  • /Comments
  • /Posts
@raakesh
raakesh / gist:da3445c5bfeac86e67a345bc338096b4
Created June 4, 2016 13:25
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (PC)

Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.

Editing

Ctrl+C copy current line (if no selection)
Ctrl+X cut current line (if no selection)
Ctrl+⇧+K delete line
Ctrl+↩ insert line after
@raakesh
raakesh / List.md
Created June 29, 2016 14:51 — forked from msurguy/List.md
List of open source projects made with Laravel

Other people's projects:

My projects (tutorials are on my blog at http://maxoffsky.com):

@raakesh
raakesh / frontendDevlopmentBookmarks.md
Created June 29, 2016 14:53 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
@raakesh
raakesh / vpn_psk_bingo.md
Created November 27, 2016 15:39 — forked from kennwhite/vpn_psk_bingo.md
Most VPN Services are Terrible
@raakesh
raakesh / 0_reuse_code.js
Created December 23, 2016 21:24
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@raakesh
raakesh / goto-sublime
Created January 14, 2017 03:21 — forked from kendellfab/goto-sublime
Add mouse click `goto definition` in sublime text 3.
Linux - create "Default (Linux).sublime-mousemap" in ~/.config/sublime-text-3/Packages/User
Mac - create "Default (OSX).sublime-mousemap" in ~/Library/Application Support/Sublime Text 3/Packages/User
Win - create "Default (Windows).sublime-mousemap" in %appdata%\Sublime Text 3\Packages\User
[
{
"button": "button1",
"count": 1,
"modifiers": ["ctrl"],
"press_command": "drag_select",