Skip to content

Instantly share code, notes, and snippets.

View romain130492's full-sized avatar

Rouiller Romain romain130492

View GitHub Profile
@kibotu
kibotu / Issues.md
Last active February 9, 2024 21:37
Ticket Templates

Bug Report Template

Help your QAs and the rest of your Agile Team members report bugs consistently! Use the bug report template for Jira issues and speed up the issue preparation process. This template ensures the reporter will provide enough information for the team to reproduce and fix the bug.


Provide a general summary of the issue in the Title above.

Expected Behaviour

@citrusui
citrusui / dropdown.md
Last active April 21, 2024 18:44
"Dropdowns" in Markdown
How do I dropdown?
This is how you dropdown.

<details>
<summary>How do I dropdown?</summary>
<br>
This is how you dropdown.
@keune
keune / RollingStone Top 500 Song
Created May 25, 2014 16:55
Json list of Rolling Stone's 500 greatest songs of all time
{"lastUpdateDate":"2014-05-25","data":[{"position":"1","artistTitle":"Bob Dylan","songTitle":"Like a Rolling Stone"},{"position":"2","artistTitle":"The Rolling Stones","songTitle":"(I Can\\'t Get No) Satisfaction"},{"position":"3","artistTitle":"John Lennon","songTitle":"Imagine"},{"position":"4","artistTitle":"Marvin Gaye","songTitle":"What\\'s Going On"},{"position":"5","artistTitle":"Aretha Franklin","songTitle":"Respect"},{"position":"6","artistTitle":"The Beach Boys","songTitle":"Good Vibrations"},{"position":"7","artistTitle":"Chuck Berry","songTitle":"Johnny B. Goode"},{"position":"8","artistTitle":"The Beatles","songTitle":"Hey Jude"},{"position":"9","artistTitle":"Nirvana","songTitle":"Smells Like Teen Spirit"},{"position":"10","artistTitle":"Ray Charles","songTitle":"What\\'d I Say"},{"position":"11","artistTitle":"The Who","songTitle":"My Generation"},{"position":"12","artistTitle":"Sam Cooke","songTitle":"A Change Is Gonna Come"},{"position":"13","artistTitle":"The Beatles","songTitle":"Yesterday"
@ralphcrisostomo
ralphcrisostomo / array_dupplicate_counter.js
Created July 19, 2012 07:43
Javascript: Count duplicates in an array
/**
Problem:
You have a javascript array that likely has some duplicate values and you would like a count of those values.
Solution:
Try this schnippet out.
*/