Skip to content

Instantly share code, notes, and snippets.

View vestigegroup's full-sized avatar
🏠
Working from home

Harish Vagjiyani vestigegroup

🏠
Working from home
View GitHub Profile
@vestigegroup
vestigegroup / AzureCheatSheet.md
Created May 24, 2022 05:47 — forked from plasx/AzureCheatSheet.md
Azure Cheat Sheet

Listing Images via Azure CLI

az vm image list --output table

Deleting certain resoruces in a resource group

List resource groups in a subscription

az resource list
@misostack
misostack / vuejs-developer-interview.md
Last active June 9, 2022 07:31
VueJS Developer Interview

VueJS Developer Interview

Overview questions

  1. Can you introduce about your self and the lastest projects
  2. What is the hardest part of your last project, and how do you solve it?
  3. What is the most important thing when you init the codebase for your project?

HTML

/// <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 () {
@adrianhajdin
adrianhajdin / HomeStyles.js
Last active April 17, 2024 12:26
Memories Part 4 Code
import { makeStyles } from '@material-ui/core/styles';
export default makeStyles((theme) => ({
appBarSearch: {
borderRadius: 4,
marginBottom: '1rem',
display: 'flex',
padding: '16px',
},
pagination: {
@NSWG
NSWG / VMware Workstation 16 Pro and Player keys
Last active May 20, 2025 07:36
VMware Workstation 16 Pro and Player keys
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
@CompuWiser
CompuWiser / TypeScript CheatSheet.md
Last active March 18, 2025 14:47
TypeScript Cheat Sheet

TypeScript CheatSheet

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!).

Types

Types (Detail)

#!/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")
@CheshtaK
CheshtaK / chatbot-ui.dart
Last active June 10, 2022 15:40
UI for chatbot built using Flutter and Dialogflow
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');