This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
provider "azurerm" { | |
version = "=1.44.0" | |
subscription_id = "<subscription-id>" | |
tenant_id = "<tenant-id>" | |
} | |
resource "azurerm_resource_group" "staticwebsite_RG" { | |
name = "staticwebsite-RG" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<meta name="description" content="Sample page for Pluralsight Audition"> | |
<meta name="author" content="Afzaal Ahmad Zeeshan"> | |
<title>Sample page for Pluralsight Audition</title> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.17; | |
contract RemoteInterface { | |
function setTeamContract(address contractAddress) public; | |
function getMyTeamContract() public view returns (address); | |
function getCellTeamNumber(uint index) public view returns (int); | |
function getMyTeamCount() public view returns (int); | |
function getCellHashFromContract(uint index) public returns (bytes32); | |
function setCellFromContract(uint index, bytes32 nonce) public payable returns (bytes32); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.17; | |
contract RemoteInterface { | |
function setTeamContract(address contractAddress) public; | |
function getMyTeamContract() public view returns (address); | |
function getCellTeamNumber(uint index) public view returns (int); | |
function getMyTeamCount() public view returns (int); | |
function getCellHashFromContract(uint index) public returns (bytes32); | |
function setCellFromContract(uint index, bytes32 nonce) public payable returns (bytes32); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.17; | |
contract RemoteInterface { | |
function setTeamContract(address contractAddress) public; | |
function getMyTeamContract() public view returns (address); | |
function getCellTeamNumber(uint index) public view returns (int); | |
function getMyTeamCount() public view returns (int); | |
function getCellHashFromContract(uint index) public returns (bytes32); | |
function setCellFromContract(uint index, bytes32 nonce) public payable returns (bytes32); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
public class Program { | |
public static void Main(string[] args) { | |
Console.WriteLine("Hello World!"); | |
} | |
} |