Skip to content

Instantly share code, notes, and snippets.

@artisanalcode
artisanalcode / stand-up-template-for-slack.md
Last active June 24, 2020 12:08
Stand-up meeting report template for Slack [SCRUM].

WHAT DID I ACCOMPLISH?

:octocat: Item on PR or CR. 🔬 Item currently on V&V/Q&A. ✅ Item done (as per definition of done). 🔹 Other item.

WHAT WILL I DO?

🔛 Currently working on.

@artisanalcode
artisanalcode / usp-calculator.xml
Created December 12, 2016 17:31
User Story Point (USP) calculator for Excel.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mx="http://schemas.microsoft.com/office/mac/excel/2008/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mv="urn:schemas-microsoft-com:mac:vml" xmlns:x14="http://schemas.microsoft.com/office/spreadsheetml/2009/9/main" xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac" xmlns:xm="http://schemas.microsoft.com/office/excel/2006/main"><sheetViews><sheetView workbookViewId="0"/></sheetViews><sheetFormatPr customHeight="1" defaultColWidth="14.43" defaultRowHeight="15.75"/><cols><col customWidth="1" min="1" max="1" width="3.0"/><col customWidth="1" min="2" max="2" width="33.43"/><col customWidth="1" min="3" max="3" width="7.0"/><col customWidth="1" min="4" max="4" width="6.14"/><col customWidth="1" min="5" max="5" width="6.0"/><col customWidth="1" m
@artisanalcode
artisanalcode / stand-up-template-for-slack-simplified.md
Last active December 22, 2016 15:16
Simple template to post stand-up updates in Slack.

Version A

🚫 BLOCKERS

  • Blocker short description. [:ticket: TICKET]

🔛 WORKING ON

  • Short description. [:ticket: TICKET]

Keybase proof

I hereby claim:

  • I am artisanalcode on github.
  • I am jgarcia (https://keybase.io/jgarcia) on keybase.
  • I have a public key whose fingerprint is F745 B5FF EF65 C466 B3D4 2B64 63B6 7DC8 3F09 8DA1

To claim this, I am signing this object:

@artisanalcode
artisanalcode / count-lines-in-properties
Created October 16, 2020 16:39
Count lines on .properties files
find . -type f -name "*.properties" -exec grep -H -c '[^[:space:]]' {} \; | sort -nr -t":" -k2 | awk -F: '{print $1; exit;}'