Skip to content

Instantly share code, notes, and snippets.

View KeenWarrior's full-sized avatar

Anuj Garg KeenWarrior

View GitHub Profile
@KeenWarrior
KeenWarrior / docker-compose.yml
Created March 27, 2017 07:35
keycloak with ssl
db:
image: postgres
environment:
- POSTGRES_DB=keycloak
- POSTGRES_USER=keycloak
- POSTGRES_PASSWORD=password
- POSTGRES_ROOT_PASSWORD=root_password
keycloak:
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Queue;
public class ShortestPathCustom {
private static int[][] data;
private static int[][] weights;
private static int m, n;
@KeenWarrior
KeenWarrior / README.md
Created June 11, 2018 10:05
Crux contents
import cv2
cap = cv2.VideoCapture(0)
while 1:
ret, img = cap.read()
cv2.imshow('img', img)
package com.codingblocks;
import java.util.*;
public class AdjacencyMapGraph <T> {
private Map<T, Vertex> vertexMap;
private Map<Vertex, Vertex> parents;
@KeenWarrior
KeenWarrior / requirements.md
Last active December 29, 2018 16:07
Game Dev Noida

Welcome to Coding Blocks Game Development Bootcamp

Installations needed

You are expected to bring

  • Laptop and charger (compulsory).
  • Pen Drive for content share if needed.
  • Personal Internet for comfortable experience.
@KeenWarrior
KeenWarrior / requirements.md
Last active January 18, 2019 12:01
Open Source Noida

Welcome to Coding Blocks Open Source Bootcamp

Installations needed

You are expected to bring

  • Laptop and charger (compulsory).
  • Pen Drive for content share if needed.
@KeenWarrior
KeenWarrior / Assignment_1.md
Last active February 10, 2019 14:37
ML Assignments

Task 1

Study various object detection algorithms. And why haar cascade is one to be most common.

Task 2

White program to load open cv stream from video file.

Task 3

  • Take out face from video stream every 5 second.
  • Resize face area to 100x100
  • flatten and add to numpy array.