Skip to content

Instantly share code, notes, and snippets.

View xamQrexii's full-sized avatar

Muhammad Osama xamQrexii

View GitHub Profile
@xamQrexii
xamQrexii / conventional_commits.md
Last active February 6, 2022 11:27
Conventional Git Commits

Quick examples

  • feat: new feature
  • fix(scope): bug in scope
  • feat!: breaking change in API
  • chore(deps): update dependencies

Commit types

  • build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
  • ci: Changes to CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
  • chore: Changes which doesn't change source code or tests e.g. changes to the build process, auxiliary tools, libraries
@xamQrexii
xamQrexii / Task2
Last active January 21, 2021 18:07
Tasks # 2
/**
|--------------------------------------------------
| TASK 1
|--------------------------------------------------
*/
Write a JavaScript program to generate a random integer.
/**
@xamQrexii
xamQrexii / Task3
Last active January 3, 2021 08:28
Tasks # 3
/**
|--------------------------------------------------
| TASK 1
|--------------------------------------------------
*/
Write a program that writes the current date in the following format.
====> Tue Dec 03 2019
/**
@xamQrexii
xamQrexii / Task1
Last active January 3, 2021 08:28
Tasks # 1
/**
|--------------------------------------------------
| TASK 1
|--------------------------------------------------
*/
Create A program that takes a name from the user and append "Mr." at the start of the name.
/**
|--------------------------------------------------