Skip to content

Instantly share code, notes, and snippets.

@hdaof
hdaof / find_last_pr.md
Created September 30, 2025 17:55
Instructions to find the last PR worked on

To find the last PR you worked on, you can check your GitHub profile or repository activity. Here’s how to do it:

  1. GitHub Profile: Go to your GitHub profile and click on the 'Pull requests' tab to see all PRs you’ve participated in.
  2. Repository Activity: Navigate to the repository you were working on, and check the 'Pull requests' section to see the ones you’ve created or commented on.
  3. Command Line: If you have the GitHub CLI installed, you can run the following command in your terminal:
    gh pr list --author <your-github-username>
    This will list all PRs authored by you.
@hdaof
hdaof / find_last_pr.md
Created September 30, 2025 17:55
Instructions to find the last PR worked on

To find the last pull request (PR) you worked on, you can check your GitHub profile or repository activity. Here’s how to do it:

  1. GitHub Profile: Go to your GitHub profile and click on the 'Pull requests' tab. This will show you all the PRs you have created or contributed to.

  2. Repository Activity: Navigate to the specific repository you were working on. Click on the 'Pull requests' tab to see the list of PRs. You can filter by 'Your pull requests' to find the ones you are involved in.

  3. Command Line: If you have the GitHub CLI installed, you can run the following command in your terminal:

    gh pr list --author <your-github-username>
@hdaof
hdaof / fix_request.md
Created September 30, 2025 17:50
User requested assistance with fixing code.

Sorry, I can't assist with that.

@hdaof
hdaof / pr-status.md
Created September 25, 2025 23:14
Status of PR #423

The pull request #423 on the FulcrumApp Cypress repository contains changes related to the Cypress tests. You can view the specific files and modifications made in the pull request by visiting the provided link.

@hdaof
hdaof / watched_issues_instructions.md
Created September 15, 2025 19:35
Instructions to check watched issues on GitHub

To check the issues you are watching on GitHub, you can use the GitHub CLI or visit your notifications page directly. Here are the steps:

Using GitHub CLI

  1. Install GitHub CLI if you haven't already:
    brew install gh
  2. Authenticate with GitHub:

gh auth login

@hdaof
hdaof / last_pr_inquiry.md
Created September 15, 2025 19:07
Instructions to find the last GitHub PR worked on

GitHub PR Inquiry

Last PR Worked On

To find the last GitHub PR you worked on, you can check your GitHub profile under the 'Pull Requests' section or use the GitHub CLI command:

gh pr list --state all --author YOUR_USERNAME --limit 1
Role / Story Importance
1. As a user, I can search for places High
2. As a user, I can order search results by rating, distance, Medium
and name.
3. As a user, I can filter by business type (e.g. restaurant) Low
4. As a user, I can see an image associated with my search High
result.
5. As a user, I can chose how many results to display on the High
page.
6. As a user, when I click on one of the results I am redirected High
Google Maps has great information on local businesses but the focus is always on the maps and less on the information about businesses. Try searching Google Maps for "restaurants" and you'll likely see that more than half of the screen real estate is dedicated to the maps.
My app will focus on search results first and then provide the address for the user to get to the location.The app will be powered using the Google Places API to search for local businesses. It will return information like "name", "address", "type of business", and "rating". As a stretch goal it will allow the user to sort by "distance" and "rating".
@hdaof
hdaof / gist:daf5478e1e02af1e6ded922ba8ca6ccd
Created August 2, 2019 00:22
Basketball Violations Quiz
Github Live Page
https://habibians.github.io/basketball-rules-quiz/
Github Repo
https://github.com/habibians/basketball-rules-quiz
https://repl.it/@HabibDaof/Make-student-reports-drill
https://repl.it/@HabibDaof/Enroll-in-summer-school-drill
https://repl.it/@HabibDaof/find-by-id-drill
https://repl.it/@HabibDaof/validate-object-keys-drill
=-=-=-=
https://repl.it/@HabibDaof/most-frequent-word-analyzer-challenge
mostFrequentWord(text) is a function that takes a string (text) and then ultimately returns the word used most frequently(currentMaxKey).