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 () { |
import { makeStyles } from '@material-ui/core/styles'; | |
export default makeStyles((theme) => ({ | |
appBarSearch: { | |
borderRadius: 4, | |
marginBottom: '1rem', | |
display: 'flex', | |
padding: '16px', | |
}, | |
pagination: { |
VMware Workstation Pro 16.x Serials | |
YA7RA-F6Y46-H889Z-LZMXZ-WF8UA | |
ZV7HR-4YX17-M80EP-JDMQG-PF0RF | |
UC3XK-8DD1J-089NP-MYPXT-QGU80 | |
GV100-84W16-M85JP-WXZ7E-ZP2R6 | |
YF5X2-8MW91-4888Y-DNWGC-W68TF | |
AY1XK-0NG5P-0855Y-K6ZXG-YK0T4 | |
VMware Workstation Player 16.x Serials |
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!).
#!/usr/bin/php-zts | |
<?php | |
# By: https://github.com/zheltikov | |
# Used in: https://www.youtube.com/watch?v=L_FdpmJatdw | |
# Define a custom Thread class | |
class MyThread extends Thread { | |
private $name = ""; | |
private $duration = 0; |
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") |
import 'package:flutter/material.dart'; | |
import 'package:flutter_dialogflow/dialogflow_v2.dart'; | |
void main() => runApp(new MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return new MaterialApp( | |
title: 'Example Dialogflow Flutter', |
const debug = require('debug')('steve'); | |
debug('variable value... through debug'); | |
//console.log('variable value... through console.'); | |
let arr = [].fill(123, 0, 10000); | |
let arr2 = new arr.map(item => item * 10); // needed `new` in front of Array | |
debug('after the loop'); |