Skip to content

Instantly share code, notes, and snippets.

View erkobridee's full-sized avatar

Erko Bridee erkobridee

View GitHub Profile

🧠 How to Write Better Jira Story Names

Writing better Jira story names helps improve team understanding, prioritization, and sprint planning. A good story title should be clear, concise, and action-oriented, summarizing the value or task in a way that's immediately understandable.


✅ Best Practices for Writing Story Names

Make it user-centric (for user stories)

If following Agile user story format:

/*
useful references:
https://github.com/erkobridee/lab-pdf-lib/blob/83ef7e53e61227cef4293a6294979b1e551a3603/src/helpers/random.js#L4
https://github.com/erkobridee/nx-todos/blob/1647f66518a6def9ddf7569ca7a2b6397337d09c/libs/shared/helpers/src/lib/values.ts#L25
https://github.com/erkobridee/gatsby-typescript-app-starter/blob/5a7bcfbbe6ff014ecb360da35a3e8255fe80bf9e/src/helpers/values.ts#L21
https://gist.github.com/rubinchyk/46d9868e2eb86d744abcb83b5b6d8d29
@erkobridee
erkobridee / WCAG.md
Last active February 25, 2025 13:50
Web Content Accessibility Guidelines (WCAG)
export const removeQueryParam = (key: string) => {
const existingValue = getFromQuery(key)
if (existingValue === null) {
return;
}
const url = new URL(window.location as any);
url.searchParams.delete(key);
history.pushState({}, '', url);

Docker on Ubuntu

Step 01 - Install Docker

# If more information needed, head to this tutorial:
# https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-22-04

# Firstly update your existing list of packages
sudo apt update