Skip to content

Instantly share code, notes, and snippets.

RustIndia Telegram Community Chat Guidelines

In RustIndia telegram group, we aim to maintain a pleasant and spam free environment. Here are some guidelines to abide by :

Do’s

  • Asking questions regarding programming.
  • Sharing Rust realted resources and news.
  • Sharing Rust events.
@dvigneshwer
dvigneshwer / Instructions.md
Created January 17, 2018 15:12
Instruction to setup python3.6 & configure jupyter kernel

1. Checking your python version in jupyter kernel

import platform
platform.python_version()

2. Installing python3.6

@dvigneshwer
dvigneshwer / notes.md
Created January 23, 2018 11:26
Installing regex in python3.6

Installtion instructions

regex_3/_regex.c:46:20: fatal error: Python.h: No such file or directory

If you are experiencing errors like the one above while trying to install regex via pip3.6, it basically means that the gcc needs the python.h header file for compilation and it's currently missing so you will have to install the python3.6-dev package to solve this problem.

Solution:

@dvigneshwer
dvigneshwer / cfp_day_ppt_tricks.md
Last active February 5, 2018 14:56
Notes from CFP made easy blog & my personel tech speaking cheat sheet
@dvigneshwer
dvigneshwer / CheetSheet.md
Created February 7, 2018 14:28
Useful MongoDB commands | More like a cheatsheet for easy reference

Create DB

use dataase_name

You will have to insert a value inorder for the db to get showcased in show dbs command.

@dvigneshwer
dvigneshwer / ML_Cheetsheet.md
Created February 12, 2018 11:38
Important ML formulaes

Popular activation functions:

  • tanh
tanh(x) = sinh(x)/cosh(x) = ( e^x - e^-x )/( e^x + e^-x ) 
  • Sigmoid
@dvigneshwer
dvigneshwer / Hive_cheatsheet.md
Created February 28, 2018 13:59
Handy hive cheatsheet
CREATE DATABASE [IF NOT EXISTS] userdb;
CREATE SCHEMA userdb;

DROP DATABASE IF EXISTS userdb;
DROP DATABASE IF EXISTS userdb CASCADE;

CREATE TABLE IF NOT EXISTS employee ( eid int, name String,
salary String, destination String)
@dvigneshwer
dvigneshwer / 10_Step_QC_list_beta.md
Created March 5, 2018 07:42
QC proccess to keep in mind when sending out a deliverable which is curated using code

QC List

Basic code hygiene:

  • The code should have a proper header, follow the sample below:
-- ##########################################################################
-- Project Name : DL Vs NB comparision
-- Author : Cisco ARMA EDS team