Skip to content

Instantly share code, notes, and snippets.

View maan56's full-sized avatar

Abdul Rehman maan56

View GitHub Profile
@maan56
maan56 / conventional-commits-cheatsheet.md
Created January 16, 2025 07:09 — 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

@maan56
maan56 / Adding Logging to Laravel Authentication
Created September 13, 2022 10:06 — forked from tprinty/Adding Logging to Laravel Authentication
Add Logging to Lavavel Authentication
Here is a quick way to add authentication logging to Laravel.
1. Modify app/Providers/EventServiceProvider.php and add lines 16 through 32 of the example file in this GIST.
2. Create a new file app/Listeners/LogActivity.php and copy the contents of the file below into that file.
3. Enjoy logging.
@maan56
maan56 / vs-code-keybindings.json
Last active April 21, 2022 08:46
My vs-code Settings file
[
{
"key": "cmd+1",
"command": "workbench.action.openEditorAtIndex1"
},
{
"key": "ctrl+1",
"command": "-workbench.action.openEditorAtIndex1"
},
{