az vm image list --output table
az resource list
| /// <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 () { |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Web Components</title> | |
| <style> | |
| body { | |
| font-family: 'Helvetica Neue'; | |
| } | |
| </style> |
| #! /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 |
| <?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 |
| <?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 | |
| 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() |
| let obj1 = { | |
| a: "this", | |
| b: "is", | |
| c: "an", | |
| d: "object", | |
| e: "literal" | |
| }; | |
| let obj2 = new Object(["object", "contructor", "one"]); // new Array("", "", "") | |
| let obj3 = new Object({ an: "object", literal: "again" }); | |
| let obj4 = new Object(obj1.a); // new Object("some string") new String("asdfas") |