Skip to content

Instantly share code, notes, and snippets.

View janitastic's full-sized avatar

Jani Palomino janitastic

View GitHub Profile

DTR: Define the Relationship

Use this template when conducting DTR with your project partners. It's recommended that you copy/paste this template into your own gist each time you conduct a DTR to take notes on the conversation.

Guiding Questions to Define The Relationship:

  • What are each of our learning goals for this project? What drives us in this project? Collab well, understand each other's code, communicate, and learn new JS techniques!
  • What is your collaboration style? How do you feel about pair programming vs. divide-and-conquer approaches? Comfortable with bouncing ideas off of each other and being open to hearing each other out. Right now, my technical abilities only allows us to pair program together, and we both feel the same way about this!
  • How do you communicate best? How do you appreciate receiving communication from others? A combo of written and verbal communication.
  • How would you describe your work style? Informal and collaborative.

How To - Upload and add Images to markdown files in Gist

Markdown files allow embedding images in it. However it requires the image to be hosted at some location and we can add the url of the image to embed it.

Example: ![Alternate image text](https://someurl/imagelocation/image.png)

We can use services like imgur or other services to host the images and use the hosted URL.

@mikepea
mikepea / pr_etiquette.md
Last active April 12, 2026 17:45
Pull Request Etiquette

Pull Request Etiquette

Why do we use a Pull Request workflow?

PRs are a great way of sharing information, and can help us be aware of the changes that are occuring in our codebase. They are also an excellent way of getting peer review on the work that we do, without the cost of working in direct pairs.

Ultimately though, the primary reason we use PRs is to encourage quality in the commits that are made to our code repositories

Done well, the commits (and their attached messages) contained within tell a story to people examining the code at a later date. If we are not careful to ensure the quality of these commits, we silently lose this ability.