Skip to content

Instantly share code, notes, and snippets.

View DilanLivera's full-sized avatar
💻

Dilan Waduge DilanLivera

💻
View GitHub Profile
@DilanLivera
DilanLivera / sample_docker_composefile_for_reference.md
Created September 1, 2023 06:33
Sample Docker Compose file for reference

Sample Docker Compose file for reference

docker-compose.yml

version: '3'
services:
  mongo-db:
    image: mongo:latest
    ports:
      - "27017:27017"
@DilanLivera
DilanLivera / _system_text_Json.md
Last active April 6, 2023 00:03
System.Text.Json
@DilanLivera
DilanLivera / _design_patterns.md
Last active April 6, 2023 01:34
Design patterns
@DilanLivera
DilanLivera / _mocking_http_apis.md
Last active April 5, 2023 22:41
Mocking HTTP APIs
@DilanLivera
DilanLivera / _http_api_client_tools.md
Last active April 5, 2023 22:21
HTTP API Client Tools
@DilanLivera
DilanLivera / microsoft_edge_browser.md
Created March 31, 2023 11:42
Microsoft Edge browser

Microsoft Edge browser

Resources

@DilanLivera
DilanLivera / _windows_command_shell_and_powershell_commands.md
Last active January 23, 2024 05:52
Windows Command shell and PowerShell commands

Windows Command shell and PowerShell commands

The following is from Windows Commands document.

Windows has two command-line shells: the Command shell and PowerShell. Each shell is a software program that provides direct communication between you and the operating system or application, providing an environment to automate IT operations.

The Command shell was the first shell built into Windows to automate routine tasks, like user account management or nightly backups, with batch (.bat) files. With Windows Script Host, you could run more sophisticated scripts in the Command shell. For more information, see cscript or wscript. You can perform operations more efficiently by using scripts than you can by using the user interface. Scripts accept all commands that are available at the command line.

PowerShell was designed to extend the capabilities of the Command shell to run PowerShell commands called cmdlets