Skip to content

Instantly share code, notes, and snippets.

View amitbd1508's full-sized avatar
🎯
Focusing

Amit Ghosh amitbd1508

🎯
Focusing
  • Fidelity Investment | KForce Inc | Cefalo | Jeeon LLC | Shohoz Ltd. | Edublock | Threat Equitation Ltd. |
  • Dallas, Texas
  • X @amitbd1508
View GitHub Profile
@aallan
aallan / object_detection_with_labels.py
Created March 8, 2019 19:54
Object detection python demonstration code for use with Google's Edge TPU (now with labelling)
import argparse
import platform
import subprocess
from edgetpu.detection.engine import DetectionEngine
from PIL import Image
from PIL import ImageFont, ImageDraw
# Function to draw a rectangle with width > 1
def draw_rectangle(draw, coordinates, color, width=1):
for i in range(width):
@simoncos
simoncos / miniconda_on_rpi.md
Last active October 7, 2024 11:50
Install Miniconda 3 on Raspberry Pi
@soheilhy
soheilhy / mochatutorial.md
Last active March 20, 2025 15:36
Mocha Tutorial

Testing Node.JS applications using Mocha

Mocha is a unittest framework for Node. In this document, we explain how you can test your javascript code and also your HTTP servers.

Installing Mocha

Use npm to install Mocha:

npm install mocha