Karan Kaw's Blog
Wednesday, November 9, 2022
Wednesday, October 26, 2022
UserStory - Efforts Mandays Mapping
1 Story Point = <half day
2 Story Points = 1/2 day2 Story Points = 1-3 days
5 Story Points = 3-6 days
8 Story Points = 2 Weeks
13 Story Points = Needs to be broken Down
Tuesday, October 25, 2022
Jira Query Language - JQL Query Examples
"order by key asc"
- project = PRJ AND type = Epic AND labels in (APP123) AND summary ~ "AAC*"
- project = PRJ AND type = Bug AND reporter in (karan.kaw)
- project = PRJ AND assignee in (currentUser()) ORDER BY status
- project = PRJ AND reporter in (karan.kaw) ORDER BY status
- project = PRJ AND assignee in (currentUser()) AND status != Done ORDER BY key asc
- project = PRJ AND assignee in (currentUser()) AND status = "In Progress" ORDER BY status
For #1 - summary ~ "AAC*" means - summary of Jira having text as "AAC"
~ means Fuzzy Search
Friday, July 22, 2022
Class in Groovy - No Globals Allowed - You gotta use "def"
In class , We cannot use Global declarations inside method in class
We have to use "def" local variables
https://www.jdoodle.com/a/4ZGo Refer this for an example
Thursday, July 21, 2022
Groovy - Useful - Tips and Links
def response = new XmlSlurper().parseText(books)
def titles = response.'**'.findAll { node -> node.name() == 'title' }*.text()
assert titles.size() == 4
--------------------------------------------------------------
----------------------------------------------------------
Subscribe to:
Posts (Atom)
Azure - Pipeline - Add Approver for Stage
https://learn.microsoft.com/en-us/azure/devops/pipelines/process/approvals?view=azure-devops&tabs=check-pass
-
https://www.baeldung.com/spring-properties-file-outside-jar https://docs.spring.io/spring-boot/docs/current/reference/html/spring-boot-featu...
-
https://learn.microsoft.com/en-us/azure/devops/pipelines/process/approvals?view=azure-devops&tabs=check-pass
-
The decision was made to block such external HTTP repositories by default https://stackoverflow.com/questions/66980047/maven-build-failure-d...