I created this gist on May 25, 2021. It is still an issue as of October 23, 2024. Welcome to the future of web development. Take this Gist to rest and calm down.
- Uninstall docker the normal way (yeah you may have already done that)
- Copy this:
#_____________________________________________________________________# | |
import face_recognition.build.lib.face_recognition.api as face_recognition | |
import cv2 | |
import numpy as np | |
obama_image = face_recognition.load_image_file("obama.jpg") | |
obama_face_encoding = face_recognition.face_encodings(obama_image)[0] |
I created this gist on May 25, 2021. It is still an issue as of October 23, 2024. Welcome to the future of web development. Take this Gist to rest and calm down.
###################################################################################### | |
## Set Up and Configure a Cloud Environment in Google Cloud: Challenge Lab # GSP321 ## | |
###################################################################################### | |
====================== TASK 1: Create development VPC manually ====================== | |
gcloud compute networks create griffin-dev-vpc --subnet-mode custom | |
gcloud compute networks subnets create griffin-dev-wp --network=griffin-dev-vpc --region us-east1 --range=192.168.16.0/20 |
# -*- coding: utf-8 -*- | |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
MEAL PLANNER - Automatic planning of cheap, varied, nutritional meals | |
--------------------------------------------------------------------- | |
Summary | |
------- | |
This Python module uses optimization (Linear Programming) and stochastic methods to |