Skip to content

Instantly share code, notes, and snippets.

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

Dawid Rzeszutek Dawiducik

🏠
Working from home
View GitHub Profile
@Dawiducik
Dawiducik / ansible_local_playbooks.md
Created August 10, 2022 07:52 — forked from alces/ansible_local_playbooks.md
How to run an Ansible playbook locally
  • using Ansible command line:
ansible-playbook --connection=local 127.0.0.1 playbook.yml
  • using inventory:
127.0.0.1 ansible_connection=local
using System.Collections.Generic;
using System.Linq;
using System;
namespace Application
{
public class Numbers
{
private List<float> _numbers = new List<float>();
private void DisplayMenu()