Skip to content

Instantly share code, notes, and snippets.

const employees =
[{
employee: 'Eleanor R. Crane',
company: 'Tellus Faucibus Leo Incorporated',
dailyRate: 0,
salary: 15200
},
{
employee: 'Haviva E. Lane',
company: 'Eu Neque Pellentesque Incorporated',
@jindeveloper
jindeveloper / nodejs_installer.ps1
Created January 10, 2021 16:11 — forked from nweldev/nodejs_installer.ps1
Powershell script installing nodejs (with git) and some npm packages
write-host "`n ## NODEJS INSTALLER ## `n"
### CONFIGURATION
# nodejs
$version = "4.4.7-x64"
$url = "https://nodejs.org/dist/latest-v4.x/node-v$version.msi"
# git
$git_version = "2.9.2"
using System;
var myUrl = new MyURL();
//prints out https://localhost:8080/myCustomer
Console.WriteLine($"{myUrl}");
return 0;
public class MyURL
var myUrl = new MyURL();
//prints out https://localhost:8080/myCustomer
Console.WriteLine($"{myUrl}");
return 0;
public class MyURL
{
private const string protocol = "https";
using System;
var myUrl = new MyURL();
//prints out https://localhost:8080/myCustomer
Console.WriteLine($"{myUrl}");
return 0;
public class MyURL
using System;
using Xunit;
namespace Inline_Out_Variables_Csharp
{
public class UnitTest1
{
[Fact]
public void ParseEmptyGuid_Test_OlderCsharpSyntax()
{
using System;
using Xunit;
namespace Inline_Out_Variables_Csharp
{
public class UnitTest1
{
[Fact]
public void ParseEmptyGuid_Test_CsharpSyntax_7()
{