Skip to content

Instantly share code, notes, and snippets.

View pbamotra's full-sized avatar
🎯
Focusing

Pankesh Bamotra pbamotra

🎯
Focusing
View GitHub Profile

[Strategy] Initiative Name

This is a generic doc for any directional discussion. You can mold it to your use case (e.g. major eng initiative, team strategy, partnership alignment, etc)

Problem Context

Where are we today? Explain relevant context for the reader to understand the problem or opportunity you’re going after.

North Star

PR 1-liner Title

Tl;dr:

[optional] 1-liner if the context of the change is long

Context:

Few sentences on the high level context for the change. Link to relevant design docs or discussion.

[Postmortem] 1-liner title of what broke

You might not have all the answers for how we can do better next time. You can use this doc to structure retrospective discussions with your team.

Overview:

  • What broke?
  • Why did it break? What was the root cause?
  • Who does the breakage affect? How severe was it?

[Design Doc] Your Project Name

Design docs are a way to propose future work and get detailed technical feedback.

Problem Context

Brief description of what the problem or opportunity is. Give an overview of the domain and pain points. What is the current solution? Give some details about what its shortcomings are.

Proposed Solution

@pbamotra
pbamotra / Install NVIDIA Driver and CUDA.md
Created February 14, 2018 20:10 — forked from wangruohui/Install NVIDIA Driver and CUDA.md
Install NVIDIA Driver and CUDA on Ubuntu / CentOS / Fedora Linux OS
@pbamotra
pbamotra / inception_annoy.py
Created October 25, 2017 22:33 — forked from thomasdullien/inception_annoy.py
Inception for feature extraction, ANNoy for nearest-neighbor search
"""
Simple, hacked-up image similarity search using Tensorflow + the inception
CNN as feature extractor and ANNoy for nearest neighbor search.
Requires Tensorflow and ANNoy.
Based on gist code under
https://gist.github.com/david90/e98e1c41a0ebc580e5a9ce25ff6a972d
"""
from annoy import AnnoyIndex
@pbamotra
pbamotra / gist:51f4268236d653b043a159a5787af5af
Created October 6, 2017 08:39 — forked from speric/gist:6096965
vimtutor Lesson Summaries
Lesson 1 SUMMARY
1. The cursor is moved using either the arrow keys or the hjkl keys.
h (left) j (down) k (up) l (right)
2. To start Vim from the shell prompt type: vim FILENAME <ENTER>
3. To exit Vim type: <ESC> :q! <ENTER> to trash all changes.
OR type: <ESC> :wq <ENTER> to save the changes.
@pbamotra
pbamotra / importtaxonomy.cql
Created June 27, 2017 23:52 — forked from rvanbruggen/importtaxonomy.cql
Google Product Taxonomy
//Import Google Product Taxonomy
//WITH IDENTIFIERS
//downloaded from https://support.google.com/merchants/answer/1705911
create index on :Cat1(name);
create index on :Cat2(name);
create index on :Cat3(name);
create index on :Cat4(name);
create index on :Cat5(name);
create index on :Cat6(name);
@pbamotra
pbamotra / product_hierarchies.adoc
Created June 27, 2017 22:22 — forked from jexp/product_hierarchies.adoc
Google Merchant Product Hierarchies Import

Importing a CSV of Categories in one Pass

@pbamotra
pbamotra / apple_health_load_analysis_R.r
Created August 13, 2016 03:31 — forked from ryanpraski/apple_health_load_analysis_R.r
Load Apple Health Kit export.xml file in R then analyze and visualize Steps Data using R
library(dplyr)
library(ggplot2)
library(lubridate)
library(XML)
#load apple health export.xml file
xml <- xmlParse("C:\\Users\\praskry\\Desktop\\apple_health_data\\export.xml")
#transform xml file to data frame - select the Record rows from the xml file
df <- XML:::xmlAttrsToDataFrame(xml["//Record"])