Skip to content

Instantly share code, notes, and snippets.

View ms-fadaei's full-sized avatar
🏠
Working from home

Mohammad Saleh Fadaei ms-fadaei

🏠
Working from home
View GitHub Profile
@anish000kumar
anish000kumar / parentPreOrder.js
Created August 28, 2021 04:33
PreOrder traversal using parent pointer
function Node(value, parent = null){
this.value = value
this.left = null
this.right = null
this.parent = parent
}
// create tree
@ErfanMirzapour
ErfanMirzapour / TailwindCSS-CheatSheet.md
Last active January 23, 2024 16:13
Mapping CSS properties to equivalent tailwind classes
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active July 16, 2024 14:44
Conventional Commits Cheatsheet

Conventional Commit Messages

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

@gre
gre / EasingFunctions.json
Last active January 11, 2023 10:28
DEPRECATED Please use http://github.com/gre/bezier-easing for latest vrrsion.
{
"ease": [0.25, 0.1, 0.25, 1.0],
"linear": [0.00, 0.0, 1.00, 1.0],
"ease-in": [0.42, 0.0, 1.00, 1.0],
"ease-out": [0.00, 0.0, 0.58, 1.0],
"ease-in-out": [0.42, 0.0, 0.58, 1.0]
}