Skip to content

Instantly share code, notes, and snippets.

View Anzo52's full-sized avatar

Anzo52 Anzo52

View GitHub Profile

Windows to UNIX Command Cheat Sheet

Windows PowerShell has several transition aliases that allow UNIX and CMD users to use familiar command names in Windows PowerShell. The most common aliases are shown in the table below, along with the Windows PowerShell command behind the alias and the standard Windows PowerShell alias if one exists.

CMD Command UNIX Command PowerShell Command PowerShell Alias
dir ls Get-ChildItem gci
@Anzo52
Anzo52 / Calculator.java
Created March 23, 2022 19:51 — forked from simonharrer/Calculator.java
Simple Calculator as a Java Webservice
import javax.jws.WebService;
import javax.xml.ws.Endpoint;
@WebService
public class Calculator {
public static void main(String[] args) {
Calculator.calculate(1, 1, "ADD");
Calculator.calculate(2, 3, "MULT");
Calculator.calculate(5, 2, "asdf");