Skip to content

Instantly share code, notes, and snippets.

View dineshg13's full-sized avatar
🏠
Working from home

Dinesh Gurumurthy dineshg13

🏠
Working from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am dineshg13 on github.
  • I am dineshg (https://keybase.io/dineshg) on keybase.
  • I have a public key ASC4x77r7ZojQXAbbNKgrVTz00lxr3m5Z3K66MkeJIdLTgo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am dineshg13 on github.
  • I am dineshg (https://keybase.io/dineshg) on keybase.
  • I have a public key ASBD0TrLiA5lkozAqPvosJoTO69n3vHi9PcKYtJxzLIxuAo

To claim this, I am signing this object:

Setting up Vim as your Go IDE

The final IDE

Intro

I've been wanting to do a serious project in Go. One thing holding me back has been a my working environment. As a huge PyCharm user, I was hoping the Go IDE plugin for IntelliJ IDEA would fit my needs. However, it never felt quite right. After a previous experiment a few years ago using Vim, I knew how powerful it could be if I put in the time to make it so. Luckily there are plugins for almost anything you need to do with Go or what you would expect form and IDE. While this is no where near comprehensive, it will get you writing code, building and testing with the power you would expect from Vim.

Getting Started

I'm assuming you're coming with a clean slate. For me this was OSX so I used MacVim. There is nothing in my config files that assumes this is the case.

@dineshg13
dineshg13 / The Technical Interview Cheat Sheet.md
Created May 3, 2017 22:35 — 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.
package com.sexifit.android;
import java.io.IOException;
import java.io.StringReader;
import java.io.UnsupportedEncodingException;
import java.util.HashMap;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
/* Put your CSS here */
html, body {
margin: 20px;
}