Skip to content

Instantly share code, notes, and snippets.

View roshanlabh's full-sized avatar

Roshan Labh roshanlabh

View GitHub Profile
@roshanlabh
roshanlabh / python-help.md
Created January 25, 2022 14:08
Python cheat sheet

Python self help guide

Datatypes and their conversion functions are:

  • integer: int()
  • float: float()
  • string: str()
  • boolean: bool()
  • list: list()

To print, use

@roshanlabh
roshanlabh / docker-help.md
Created January 25, 2022 14:02
Docker help

Docker self help guide

Docker is lightweight virtual machines.

  • To install docker on ubuntu
wget -qO- https://get.docker.com/ | sh
@roshanlabh
roshanlabh / 0_BQ_description.md
Created January 29, 2021 05:12 — forked from OrenBochman/0_BQ_description.md
Big Query for GA analytics

BigQuery for Google Analytics

No metrics in

Self Joins

  • Cross Join example
  • Inner Join example

joins can be inefficent - they can require moving lots of data around and increase the data process from n to n * n

@roshanlabh
roshanlabh / react-phone-book.js
Created January 24, 2021 13:10
Coderbyte - React Phone Book [solution]
import React, { useState } from "react";
import ReactDOM from "react-dom";
const style = {
table: {
borderCollapse: "collapse",
},
tableCell: {
border: "1px solid gray",
margin: 0,