Skip to content

Instantly share code, notes, and snippets.

View aabhassenapati's full-sized avatar

Aabhas Senapati aabhassenapati

View GitHub Profile
@aabhassenapati
aabhassenapati / ideas.md
Created October 16, 2020 07:27 — forked from tsaqib/ideas.md
Ideas that you can use for hackathons, competitions and research.

Ideas

I have collected and moderated these ideas from various public sources and put into one place so that problem solvers and solution developers may find inspirations. Because I wish to update it regularly, I have setup as a single page wiki. You may try these ideas on hackathons/competitions/research; some are quite intense problems and some are not. Many of the problems were prepared keeping Dhaka/Bangladesh in mind, but of course can be applied to just about any underdeveloped/developing and sometimes developed countries.

Categories:
  • Eradicate Extreme Poverty and Hunger
  • Education
  • Healthcare
  • Governance
int analogPin = 0;
double raw = 0;
float iinv = 0;
float Vuk = 0;
float Ruk = 0;
float R1 = 680000;
float buffer = 0;
void setup()
{
Serial.begin(9600);
@aabhassenapati
aabhassenapati / sheets.py
Created November 20, 2019 02:21
Smart Security Camera Project
from __future__ import print_function
from xlrd import open_workbook
from googleapiclient.discovery import build
from httplib2 import Http
from oauth2client import file, client, tools
from oauth2client.service_account import ServiceAccountCredentials
import xlrd
import time
import datetime
import cv2
@aabhassenapati
aabhassenapati / pi_face_recognition.py
Last active November 20, 2019 02:19
Smart Security Camera Project
# USAGE
# python pi_face_recognition.py --cascade haarcascade_frontalface_default.xml --encodings encodings.pickle
#import the necessary packages
from __future__ import print_function
from xlrd import open_workbook
from imutils.video import VideoStream
from imutils.video import FPS