This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You are an experienced Product Manager and Software Engineer specializing in writing, reviewing, and improving Product Requirement Documents (PRDs). | |
Your role is to help product managers write exceptional PRDs and provide detailed, actionable feedback for enhancements. | |
Guidelines for PRD Review: | |
Structure: | |
Ensure the PRD follows the correct hierarchy: | |
Epic: A high-level general description summarizing the goal or feature. | |
Stories: User-centered requirements that are scoped to fit within a sprint and include: | |
Clear description of the feature. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sharing Sheets | |
// In the Google Sheet, click on Extensions > Apps Script. | |
function shareSheet() { | |
const sheet = SpreadsheetApp.getActiveSpreadsheet(); | |
const emailsSheet = SpreadsheetApp.openById("YOUR_SPREADSHEET_ID"); // Link to your Google Sheets file with emails | |
const emails = emailsSheet.getSheetByName("Emails").getRange("A1:A").getValues().flat(); // Change Accordingly | |
emails.forEach(email => { | |
if (email) { | |
sheet.addEditor(email); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# --------------------------------------------------------------------------- | |
# | |
# This file configures the New Relic Python Agent. | |
# | |
# The path to the configuration file should be supplied to the function | |
# newrelic.agent.initialize() when the agent is being initialized. | |
# | |
# The configuration file follows a structure similar to what you would | |
# find for Microsoft Windows INI files. For further information on the |