Skip to content

Instantly share code, notes, and snippets.

View pigullino1975's full-sized avatar
💭
I may be slow to respond.

pigullino1975

💭
I may be slow to respond.
View GitHub Profile
@pigullino1975
pigullino1975 / getting-going-best-practices.md
Created October 23, 2023 13:11 — forked from jbjonesjr/getting-going-best-practices.md
Getting Going and Best Practices Guide

GitHub Onboarding and Introduction

A guide for getting started and best practices for teams new to, or improving their interactions with, GitHub

image GitHub's features and capabilities

This document is meant to help new teams to GitHub familiarize themselves with the features and platform, as well as start to explore some of the best practices. While not a complete exploration, it's meant as a introduction to the key tenets of using GitHub for your business. For teams and organizations that desire more one on one support, GitHub Professional Services has many different options available to customize tools, training, and process to best meet your needs. The GitHub offerings listed in the diagram above are just a sampling of the various capabilities and we'd love to create a customized offering to meet your specific organizational needs.

Overview and Intr

@pigullino1975
pigullino1975 / helpful-docker-commands.sh
Created January 19, 2022 15:12 — forked from garystafford/helpful-docker-commands.sh
My list of helpful docker commands
###############################################################################
# Helpful Docker commands and code snippets
###############################################################################
### CONTAINERS ###
docker stop $(docker ps -a -q) #stop ALL containers
docker rm -f $(docker ps -a -q) # remove ALL containers
docker rm -f $(sudo docker ps --before="container_id_here" -q) # can also filter
# exec into container
@pigullino1975
pigullino1975 / Program.cs
Created April 8, 2021 20:13 — forked from georgepowell/Program.cs
Roman Numerals converter in C#. Run as a console application from Visual Studio. The 'Romanise' function is where the magic happens.
using System;
namespace RomanNumerals
{
class Program
{
// Create rules in descending order
static Rule[] Rules = new Rule[]
{
new Rule(1000, "M"),