Thanks to visit codestin.com
Credit goes to gist.github.com

Skip to content

Instantly share code, notes, and snippets.

View imgios's full-sized avatar
⌨️
typing..

Giosuè Sulipano imgios

⌨️
typing..
View GitHub Profile
@imgios
imgios / conventional-commits-cheatsheet.md
Created February 19, 2025 13:10 — forked from qoomon/conventional-commits-cheatsheet.md
Conventional Commits Cheatsheet

Conventional Commit Messages starline

See how a minor change to your commit message style can make a difference.

Tip

Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs

Commit Message Formats

Default

@imgios
imgios / gist:06be33c75c331c9734e7e5c903faf3e9
Created December 20, 2023 19:25 — forked from digitaljhelms/gist:4287848
Git/GitHub branching standards & conventions

Branching

Quick Legend

Description, Instructions, Notes
Instance Branch
@imgios
imgios / ipcalc.py
Last active May 23, 2022 14:17
Retrieve IP Range from a given IP and mask using Python3
#!/usr/bin/python3
"""
Python script to retrieve IP range from a given IP with the CIDR.
Execute it providing the IP: e.g. 10.0.2.7/32
"""
import sys
from ipaddress import IPv4Network, AddressValueError, NetmaskValueError
def usage():
@imgios
imgios / maven-ci-action.yml
Last active December 30, 2020 21:06
Maven-CI Action
name: Maven CI/CD
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build_and_test:
@imgios
imgios / README-Template.md
Created September 16, 2019 15:40 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites