Skip to content

Instantly share code, notes, and snippets.

@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active November 18, 2024 15:52
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

@joonvena
joonvena / commands.txt
Created August 4, 2020 05:07
Fix for MSI GS65 going to airplane mode after suspend (Unix)
sudo nano /etc/default/grub
# Add these inside GRUB_CMDLINE_LINUX_DEFAULT:
acpi_osi=! acpi_osi='Windows 2009' quiet splash
# Run this command and reboot:
sudo update-grub
Now when you come back from suspend you can use hardware keys to remove the airplane mode (Fn + f10).
@Supercip971
Supercip971 / submodule-updater.yml
Last active September 6, 2023 17:11
update all your submodule when you want with this github action !
name: update all submodules
on: workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0