Skip to content

Instantly share code, notes, and snippets.

View kgautam01's full-sized avatar
💭
Exploring & Implementing!

Kuldeep Gautam kgautam01

💭
Exploring & Implementing!
View GitHub Profile
import sys, cv2
# Refactored https://realpython.com/blog/python/face-recognition-with-python/
def cascade_detect(cascade, image):
gray_image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
return cascade.detectMultiScale(
gray_image,
scaleFactor = 1.15,
minNeighbors = 5,
@satwikkansal
satwikkansal / cheatsheet.cpp
Last active July 3, 2024 14:57
C++ STL cheatsheet for competitive progrmming
/*
This a header file that includes every standard library.
You can use it to save time.
NOTE: This header file may not be recognized by compilers
other than gcc.
*/
#include <bits/stdc++.h>
/*
//Use this if the above header file doesn't work.
@siggiorn
siggiorn / InterviewPrep.md
Last active March 17, 2024 20:35
Software / Machine Learning Engineer Interview Prep - A collection of resources that I found useful in my job search for the various components of the technical interviewing process.

Software / Machine Learning Engineer Interview Prep

Sigurður (Siggi) Örn Aðalgeirsson - 7/2018

The following is basically a collection of resources that I found useful in my job search, for the various components of the technical interviewing process.

Software Engineering

General Interview Prep

Here are some good pointers and guides for general interview preparation

  • The Complete Guide to Google Interview Preparation