Answer: MongoDB is an open-source document database that provides high performance, high availability, and automatic scaling. It's Key Features are:
- Document Oriented and NoSQL database.
import cv2 | |
face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml') | |
# Read the input image | |
#img = cv2.imread('test.png') | |
cap = cv2.VideoCapture('test.mp4') | |
while cap.isOpened(): | |
_, img = cap.read() |
<?php | |
// This file demonstrates file upload to an S3 bucket. This is for using file upload via a | |
// file compared to just having the link. If you are doing it via link, refer to this: | |
// https://gist.github.com/keithweaver/08c1ab13b0cc47d0b8528f4bc318b49a | |
// | |
// You must setup your bucket to have the proper permissions. To learn how to do this | |
// refer to: | |
// https://github.com/keithweaver/python-aws-s3 | |
// https://www.youtube.com/watch?v=v33Kl-Kx30o | |
<?php | |
// This file demonstrates file upload to an S3 bucket. This is for using file upload via a | |
// link compared to actually having the image file content. If you are doing it via image | |
// file upload, like getting the file from $_FILE, refer to this: | |
// https://gist.github.com/keithweaver/70eb06d98b008113ce97f6148fbea83d | |
// | |
// You must setup your bucket to have the proper permissions. To learn how to do this | |
// refer to: | |
// https://github.com/keithweaver/python-aws-s3 | |
// https://www.youtube.com/watch?v=v33Kl-Kx30o |
#! /usr/bin/env python | |
# -*- coding: utf-8 -*- | |
"""This module's docstring summary line. | |
This is a multi-line docstring. Paragraphs are separated with blank lines. | |
Lines conform to 79-column limit. | |
Module and packages names should be short, lower_case_with_underscores. | |
Notice that this in not PEP8-cheatsheet.py |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Web Components</title> | |
<style> | |
body { | |
font-family: 'Helvetica Neue'; | |
} | |
</style> |
/// <reference path="Emp.js" /> | |
var App = angular.module('MyApp', ['ngRoute']);//already disscused about ngRoute and angular.module | |
App.controller('EmpController', function ($scope, EmployeeService) {// controller with two parameters $scope and serive Which i have little bit discused about it in ever first angualrjs tutorial | |
$scope.isFormValid = false; | |
$scope.message = null; | |
$scope.employee = null; | |
EmployeeService.GetEmployeeList().then(function (d) { //Call the GetEmployeeList() function in service for getting all Employee Record | |
$scope.employee = d.data; | |
}, | |
function () { |
See all available environment variables: https://docs.aws.amazon.com/cli/latest/userguide/cli-environment.html
export AWS_DEFAULT_REGION=us-west-2
All right reserved to CodeCademy.com and dotnettricks.com
Notice: This started as a Cheat Sheet, then extended to be so long! (I didn't expected that!).